@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-dark: #020617;
  --primary-light: #f1f5f9;
  --accent-blue: #0284c7;
  --accent-blue-dark: #0c4a6e;
  --accent-blue-light: #38bdf8;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --neutral-dark: #1e293b;
  --neutral-medium: #475569;
  --neutral-light: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    background-image: 
        radial-gradient(circle at 100% 100%, rgba(2, 132, 199, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(30, 58, 138, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
}

/* ShadCN Style Navigation */
.modern-floating-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 2rem);
    max-width: 1100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-floating-nav.scrolled {
    top: 0.5rem;
    transform: translateX(-50%) scale(0.96);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 0.75rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-floating-nav.scrolled .nav-container {
    padding: 0.375rem 1rem;
    background: rgba(2, 8, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-floating-nav.scrolled .nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.01) 0%, 
        rgba(14, 165, 233, 0.02) 50%,
        rgba(56, 189, 248, 0.01) 100%);
    border-radius: 1rem;
    opacity: 1;
}

.modern-floating-nav.scrolled .nav-container > * {
    position: relative;
    z-index: 1;
}



/* Logo Section */
.nav-logo-section {
    flex-shrink: 0;
}

.modern-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-logo-icon {
    font-size: 1.25rem;
    color: #38bdf8;
    transition: all 0.2s ease;
}

.modern-logo-icon:hover {
    color: #0ea5e9;
}

.modern-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: -0.025em;
}

.modern-beta-badge {
    font-size: 0.625rem;
    font-weight: 500;
    padding: 0.125rem 0.375rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 0.375rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation Pills */
.nav-pills-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pills {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-pill {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(241, 245, 249, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-pill:hover {
    color: #f1f5f9;
    background: rgba(56, 189, 248, 0.1);
}

.nav-pill.active {
    background: rgba(56, 189, 248, 0.2);
    color: #f1f5f9;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.nav-pill span {
    position: relative;
    z-index: 1;
}

/* Action Section */
.nav-action-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-action-btn:hover {
    background: linear-gradient(135deg, #0284c7, #2563eb);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hamburger-lines span {
    width: 1rem;
    height: 0.125rem;
    background: rgba(241, 245, 249, 0.7);
    border-radius: 0.0625rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(56, 189, 248, 0.1);
}

.mobile-menu-btn:hover .hamburger-lines span {
    background: #38bdf8;
}

/* Transparent Mobile Menu */
.modern-mobile-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(2, 8, 23, 0.6);
    backdrop-filter: blur(12px); /* backdrop-blur-md */
    border: 1px solid rgba(56, 189, 248, 0.1); /* navbar border uyumu */
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.modern-mobile-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-pills {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: rgba(241, 245, 249, 0.8);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.mobile-nav-pill:hover {
    color: #f1f5f9;
    background: rgba(56, 189, 248, 0.1);
}

.mobile-nav-pill.active {
    background: rgba(56, 189, 248, 0.2);
    color: #f1f5f9;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.mobile-nav-pill i {
    font-size: 1rem;
    width: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0.75rem 1.25rem;
    }
    
    .nav-pills {
        gap: 0.125rem;
    }
    
    .nav-pill {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .modern-floating-nav {
        top: 0.75rem;
        width: calc(100% - 1rem);
    }
    
    .modern-floating-nav.scrolled {
        top: 0.25rem;
        transform: translateX(-50%) scale(0.97);
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .modern-floating-nav.scrolled .nav-container {
        padding: 0.375rem 0.875rem;
        border-radius: 0.875rem;
    }
    
    .modern-logo-text {
        font-size: 1rem;
    }
    
    .modern-logo-icon {
        font-size: 1.125rem;
    }
    
    .nav-pills-container {
        display: none;
    }
    
    .nav-action-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* ===== HERO SECTION - SEAMLESS SPACING FIX ===== */
.gradient-bg {
    background: linear-gradient(135deg, rgba(2, 8, 23, 0.95) 0%, rgba(12, 74, 110, 0.95) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0; /* Remove any gaps */
    padding-bottom: 0; /* Remove extra padding */
    padding-top: 0; /* No padding - controlled by inner container */
}

@media (max-width: 768px) {
    .gradient-bg {
        padding-top: 0; /* No padding - controlled by inner container */
    }
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
    animation: subtle-pulse 7s ease-in-out infinite;
    opacity: 0.3; /* Reduced opacity for subtlety */
}

/* Remove transform issues that cause gaps */
#home {
    transform: none !important; /* Disable problematic transforms */
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Ensure next section connects seamlessly */
#home + section,
#home + div {
    margin-top: 0 !important;
    border-top: none;
}

/* Text animation styles */
.text-shimmer {
    background: linear-gradient(90deg, #ffffff, #0284c7, #ffffff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.word-animation {
    display: inline-block;
    animation: elegant-float 4s ease-in-out infinite;
    animation-delay: calc(var(--char-index, 0) * 0.05s);
    opacity: 0;
    animation-fill-mode: forwards;
}

.word-animation-entrance {
    animation: fade-in-up 0.5s ease forwards;
    animation-delay: calc(var(--char-index, 0) * 0.05s);
}

.highlight-text {
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: rgba(2, 132, 199, 0.15);
    z-index: -1;
    transform: skewX(-12deg);
}

/* Card Styles */
.card-hover {
    transition: all 0.2s ease;
    background: rgba(12, 74, 110, 0.05);
    border: 1px solid rgba(2, 132, 199, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-hover:hover {
    transform: translateY(-2px);
    background: rgba(12, 74, 110, 0.1);
}

.breach-card {
    transition: all 0.2s ease;
    background: rgba(12, 74, 110, 0.05);
    border: 1px solid rgba(2, 132, 199, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1;
    transform: translateY(0);
}

.breach-card:hover {
    transform: translateY(-2px);
    background: rgba(12, 74, 110, 0.1);
}

/* Status Cards */
.status-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.status-card-safe {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border-color: rgba(16, 185, 129, 0.3);
}

.status-card-safe .status-icon {
    background: rgba(16, 185, 129, 0.2);
    color: rgb(16, 185, 129);
}

.status-card-warning {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
    border-color: rgba(245, 158, 11, 0.3);
}

.status-card-warning .status-icon {
    background: rgba(245, 158, 11, 0.2);
    color: rgb(245, 158, 11);
}

.status-card-danger {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    border-color: rgba(239, 68, 68, 0.3);
}

.status-card-danger .status-icon {
    background: rgba(239, 68, 68, 0.2);
    color: rgb(239, 68, 68);
}

.status-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.input-glow {
    transition: all 0.3s ease;
    background: rgba(12, 74, 110, 0.1);
}

.input-glow:focus {
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
    border-color: rgba(2, 132, 199, 0.6);
    background: rgba(12, 74, 110, 0.15);
}

/* Loading States */
.loading-dots:after {
    content: '.';
    animation: dots 1.5s steps(5, end) infinite;
}

.loading-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
    animation: loading-bar 2s ease-in-out infinite;
    background-size: 200% 100%;
}

/* Button Styles */
.modern-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.9), rgba(30, 58, 138, 0.9));
    box-shadow: 0 4px 15px -3px rgba(2, 132, 199, 0.4);
    transform-style: preserve-3d;
    border: none;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.modern-button:hover {
    transform: translateY(-1px) scale(1.01); /* Subtle lift */
    box-shadow: 
        0 6px 20px -6px rgba(2, 132, 199, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(2, 132, 199, 1), rgba(30, 58, 138, 1));
}

.modern-button:hover::before {
    left: 100%;
    opacity: 0.1; /* Much more subtle */
}

.modern-button-outline {
    background: transparent;
    border: 1px solid rgba(2, 132, 199, 0.6);
    color: var(--accent-blue-light);
}

.modern-button-outline:hover {
    background: rgba(2, 132, 199, 0.1);
}

.modern-button-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    box-shadow: 0 4px 15px -3px rgba(16, 185, 129, 0.4);
}

.modern-button-success:hover {
    box-shadow: 0 7px 20px -3px rgba(16, 185, 129, 0.6);
}

.modern-button-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
    box-shadow: 0 4px 15px -3px rgba(245, 158, 11, 0.4);
}

.modern-button-warning:hover {
    box-shadow: 0 7px 20px -3px rgba(245, 158, 11, 0.6);
}

.modern-button-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
    box-shadow: 0 4px 15px -3px rgba(239, 68, 68, 0.4);
}

.modern-button-danger:hover {
    box-shadow: 0 7px 20px -3px rgba(239, 68, 68, 0.6);
}

/* Modern Icon Animations */
.icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-accent {
    color: var(--accent-blue);
}

.icon-success {
    color: var(--success-color);
}

.icon-warning {
    color: var(--warning-color);
}

.icon-danger {
    color: var(--danger-color);
}

.icon-pulse {
    animation: icon-subtle-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(2, 132, 199, 0.3));
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.75em;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 9999px;
}

.badge-primary {
    background-color: rgba(2, 132, 199, 0.2);
    color: var(--accent-blue-light);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.badge-danger {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
}

/* Tag Styles */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.75em;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.25rem;
}

.tag-primary {
    background-color: rgba(2, 132, 199, 0.15);
    color: var(--accent-blue-light);
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.tag-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-danger {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Security Score Indicator */
.security-score {
    position: relative;
    height: 8px;
    border-radius: 9999px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.security-score-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: width 1s ease-in-out;
}

.security-score-low {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.security-score-medium {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.security-score-high {
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Action Plan Step */
.action-step {
    border-left: 2px solid rgba(2, 132, 199, 0.3);
    padding-left: 1.5rem;
    position: relative;
}

.action-step::before {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    left: -0.5rem;
    top: 0;
    border-radius: 50%;
    background-color: var(--accent-blue);
}

.action-step:last-child {
    border-left: 2px solid transparent;
}

/* ANIMATIONS */
@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.01); }
}

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

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

@keyframes elegant-float {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-3px); 
        opacity: 0.95;
    }
}

@keyframes fade-in-up {
    0% { 
        opacity: 0;
        transform: translateY(10px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading-bar {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: rgba(2, 132, 199, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 132, 199, 0.5);
}

/* Gradient borders */
.gradient-border {
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
    border-radius: 0.375rem;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.4), rgba(30, 58, 138, 0.4));
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
    opacity: 0.5;
}

/* Glowing text effect */
.text-glow {
    text-shadow: 0 0 15px rgba(2, 132, 199, 0.5);
}

/* Divider with text */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

/* Utility Classes */
.hidden {
    display: none;
}

.animate-fade-in {
    animation: fade-in-up 0.5s ease forwards;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Exposure timeline grid */
.exposure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.exposure-cell {
    background-color: var(--neutral-dark);
    border-radius: 0.375rem;
    padding: 0.5rem;
    text-align: center;
}

.exposure-cell .period {
    display: block;
    font-size: 0.75rem;
    color: var(--neutral-light);
}

.exposure-cell .count {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue-light);
}

/* Trust Badges */
.trust-badge {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(12, 74, 110, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.2);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-1px);
    background: rgba(56, 189, 248, 0.03);
}

/* Stat Cards - Minimal & Transparent */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(12, 74, 110, 0.05);
    border: 1px solid rgba(2, 132, 199, 0.08);
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(12, 74, 110, 0.1);
}

/* Counter Animation */
.counter {
    font-feature-settings: 'tnum';
    transition: all 0.3s ease;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.pricing-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 15px rgba(0, 0, 0, 0.1);
}

/* This duplicate is now handled in the Most Popular Badge Fix section below */

/* Testimonial Cards */
.testimonial-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Company Logos */
.company-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.company-logo:hover {
    color: rgba(56, 189, 248, 0.9);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.06);
}



/* Stat Highlights */
.stat-highlight {
    padding: 1rem;
    text-align: center;
    background: rgba(12, 74, 110, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(2, 132, 199, 0.1);
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    background: rgba(12, 74, 110, 0.08);
    transform: translateY(-1px);
}

/* Feature Highlights */
.feature-highlight {
    padding: 1.5rem;
    background: rgba(12, 74, 110, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(2, 132, 199, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(12, 74, 110, 0.08);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn:focus {
    outline: none;
}

#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.show {
    display: block;
    animation: slideDownMenu 0.3s ease;
}

/* Grid Pattern Background */
.bg-grid-pattern {
    background-image: 
        linear-gradient(rgba(2, 132, 199, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-1px);
}

/* Additional Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Enhanced Card Animations */
.card-entrance {
    animation: cardEntrance 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Staggered Animation Delays */
.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design Improvements */
/* Legacy pricing card support - minimal styling for compatibility */
.pricing-card {
    margin-top: 1rem;
    background: rgba(12, 74, 110, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .pricing-card.popular {
        transform: none;
        margin-top: 2rem; /* More space on mobile */
    }
    
    .pricing-card {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stat-card {
        padding: 1rem;
    }
    
    .pricing-card,
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.125rem 0.5rem;
    }
    

}

/* Responsive adjustments */
@media (max-width: 640px) {
    .security-score {
        height: 6px;
    }
    
    .status-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .feature-highlight,
    .stat-highlight {
        padding: 1rem;
    }
}

/* Enhanced Results Styling */

/* Success Animation */
.success-animation {
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon {
    animation: successFloat 3s ease-in-out infinite;
}

.danger-animation {
    animation: dangerPulse 2s ease-in-out infinite;
}

.danger-icon {
    animation: dangerShake 0.5s ease-in-out infinite alternate;
}

/* Security Bars */
.security-bar {
    animation: securityBarFill 1.5s ease-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

.security-metric:nth-child(1) .security-bar { animation-delay: 0.2s; }
.security-metric:nth-child(2) .security-bar { animation-delay: 0.4s; }
.security-metric:nth-child(3) .security-bar { animation-delay: 0.6s; }

/* Recommendation Cards */
.recommendation-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.recommendation-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ===== UNIFIED CARD SYSTEM - MINIMAL & TRANSPARENT ===== */
.enhanced-breach-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    z-index: 15;
    padding: 1.5rem;
    margin-top: 5rem;
    cursor: pointer;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.enhanced-breach-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Timeline Cells */
.timeline-cell {
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-cell:hover {
    transform: translateY(-2px);
}

.timeline-cell:hover .h-8 {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Legacy Action Priority Cards - REMOVED for unified design system */
/* All cards now use .enhanced-breach-card for consistency */

/* Enhanced Animations */
@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
}

@keyframes successFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes dangerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
}

@keyframes dangerShake {
    0% {
        transform: translateX(-2px) rotate(-2deg);
    }
    100% {
        transform: translateX(2px) rotate(2deg);
    }
}

@keyframes securityBarFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Scan Time Animation */
.scan-time {
    animation: countUp 2s ease-out forwards;
}

/* Enhanced Card Staggered Animations */
.enhanced-breach-card:nth-child(1) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.1s; opacity: 0; }
.enhanced-breach-card:nth-child(2) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.2s; opacity: 0; }
.enhanced-breach-card:nth-child(3) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.3s; opacity: 0; }
.enhanced-breach-card:nth-child(4) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.4s; opacity: 0; }

.recommendation-card:nth-child(1) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.1s; opacity: 0; }
.recommendation-card:nth-child(2) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.2s; opacity: 0; }
.recommendation-card:nth-child(3) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.3s; opacity: 0; }
.recommendation-card:nth-child(4) { animation: cardSlideIn 0.6s ease forwards; animation-delay: 0.4s; opacity: 0; }

/* Action priority cards removed - using unified enhanced-breach-card */

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Mobile Responsiveness for Results */
@media (max-width: 768px) {
    .enhanced-breach-card {
        margin-bottom: 1rem;
    }
    
    /* Action priority cards removed - using unified enhanced-breach-card */
    
    .recommendation-card {
        padding: 1rem;
    }
    
    .timeline-cell {
        font-size: 0.875rem;
    }
    
    .success-animation,
    .danger-animation {
        width: 100px;
        height: 100px;
    }
    
    .success-icon,
    .danger-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .enhanced-breach-card .flex {
        flex-direction: column;
        text-align: center;
    }
    
    .enhanced-breach-card .mr-6 {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Action priority card responsive styles removed - using unified design */
}

/* Enhanced Loading Styles */
.scanning-animation {
    animation: scanPulse 2s ease-in-out infinite;
}

.scanning-icon {
    animation: scanRotate 2s linear infinite;
}

.scanning-radar {
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: radarSweep 2s linear infinite;
}

.enhanced-loading-bar {
    animation: loadingProgress 3s ease-in-out infinite;
    width: 0%;
}

.loading-percentage {
    animation: percentageCount 3s ease-in-out infinite;
}

/* Scanning Steps */
.scanning-step {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(12, 74, 110, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.scanning-step.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.scanning-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 2px;
}

.scanning-indicator.active {
    background: rgba(59, 130, 246, 0.8);
    animation: indicatorPulse 1s ease-in-out infinite;
}

/* Stat Counters */
.stat-counter {
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Enhanced Loading Animations */
@keyframes scanPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }
}

@keyframes scanRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes radarSweep {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 100%;
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(1.2);
    }
}

/* Loading Dots Enhancement */
.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s linear infinite;
}

@keyframes loadingDots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Mobile Responsiveness for Loading */
@media (max-width: 768px) {
    .scanning-animation {
        width: 100px;
        height: 100px;
    }
    
    .scanning-icon {
        font-size: 2.5rem;
    }
    
    .scanning-step {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-counter {
        padding: 0.75rem;
        text-align: center;
    }
}

/* Z-index layers only */
#loading-section {
    z-index: 40;
}

/* Enhanced flow animations for How It Works */
@keyframes pulse-flow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(0%); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes pulse-flow-delayed {
    0% { transform: translateX(-100%); opacity: 0; }
    60% { transform: translateX(-20%); opacity: 0.7; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(56, 189, 248, 0.5); }
    50% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.8), 0 0 30px rgba(56, 189, 248, 0.4); }
}

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

.animate-pulse-flow { animation: pulse-flow 3s ease-in-out infinite; }
.animate-pulse-flow-delayed { animation: pulse-flow-delayed 3s ease-in-out infinite 1.5s; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-float { animation: float 2s ease-in-out infinite; }

.animation-delay-half { animation-delay: 0.5s; }
.animation-delay-1 { animation-delay: 1s; }

/* Pricing card improvements - consolidated with enhanced version above */

/* ===== ENHANCED PRICING SECTION ===== */
.pricing-card-enhanced {
    position: relative;
    background: linear-gradient(145deg, rgba(12, 74, 110, 0.1), rgba(30, 58, 138, 0.05));
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    z-index: 1;
}

.pricing-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.05), rgba(59, 130, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.pricing-card-enhanced:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 
        0 15px 35px -10px rgba(56, 189, 248, 0.12),
        0 0 0 1px rgba(56, 189, 248, 0.06);
    background: linear-gradient(145deg, rgba(12, 74, 110, 0.08), rgba(30, 58, 138, 0.04));
}

/* Most Popular Card */
.pricing-card-enhanced.popular {
    transform: scale(1.05);
    border: 2px solid rgba(56, 189, 248, 0.4);
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.15), rgba(59, 130, 246, 0.1));
    box-shadow: 
        0 25px 50px -12px rgba(56, 189, 248, 0.4),
        0 0 40px rgba(56, 189, 248, 0.2);
}

.pricing-card-enhanced.popular:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 
        0 20px 40px -12px rgba(56, 189, 248, 0.2),
        0 0 0 1px rgba(56, 189, 248, 0.1);
}

/* Most Popular Badge */
.most-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 
        0 10px 25px -5px rgba(59, 130, 246, 0.5),
        0 0 20px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { 
        box-shadow: 
            0 10px 25px -5px rgba(59, 130, 246, 0.5),
            0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% { 
        box-shadow: 
            0 15px 35px -5px rgba(59, 130, 246, 0.7),
            0 0 30px rgba(59, 130, 246, 0.5);
    }
}

/* Card Components */
.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Pricing card icons are now defined in the enterprise icon system above */

.pricing-card-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.pricing-card-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(56, 189, 248, 0.03);
    transform: translateX(2px);
    border-left: 2px solid rgba(56, 189, 248, 0.2);
    padding-left: 0.7rem;
}

.feature-item i {
    margin-right: 0.75rem;
    width: 1.25rem;
    text-align: center;
}

.feature-item.disabled {
    opacity: 0.5;
}

.pricing-card-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-button.primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pricing-card-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px -8px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.pricing-card-button.secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.pricing-card-button.secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-2px);
}

.pricing-card-button.popular-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pricing-card-button.popular-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Trust Indicators */
.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-1px) scale(1.02);
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.15);
    box-shadow: 0 4px 12px -4px rgba(56, 189, 248, 0.15);
}

/* Trust icons are now defined in the enterprise icon system above */

/* ===== ENHANCED HOW IT WORKS SECTION ===== */
.step-card {
    position: relative;
    background: linear-gradient(145deg, rgba(12, 74, 110, 0.1), rgba(30, 58, 138, 0.05));
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.05), rgba(59, 130, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.step-card:hover {
    transform: translateY(-2px) scale(1.005); /* Minimal movement */
    background: rgba(12, 74, 110, 0.08);
    border-color: rgba(56, 189, 248, 0.15);
    box-shadow: 
        0 10px 40px -15px rgba(56, 189, 248, 0.1),
        0 0 0 1px rgba(56, 189, 248, 0.05);
}

.step-number {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    border: 3px solid rgba(56, 189, 248, 0.3);
}

.step-icon-container {
    position: relative;
    margin-bottom: 2rem;
}

.step-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Advanced Gradient Backgrounds */
.step-icon.step1 {
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9)),
        linear-gradient(225deg, rgba(34, 197, 94, 0.1), transparent),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
    box-shadow: 
        0 20px 40px -15px rgba(16, 185, 129, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-icon.step2 {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(29, 78, 216, 0.9)),
        linear-gradient(225deg, rgba(96, 165, 250, 0.1), transparent),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
    box-shadow: 
        0 20px 40px -15px rgba(59, 130, 246, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-icon.step3 {
    background: 
        linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9)),
        linear-gradient(225deg, rgba(251, 191, 36, 0.1), transparent),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
    box-shadow: 
        0 20px 40px -15px rgba(245, 158, 11, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Clean Hover Effects - No Glow */
.step-card:hover .step-icon {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 8px 25px -8px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Glassmorphism Glow Effect */
.step-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: 
        radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    backdrop-filter: blur(10px);
}

.step-card:hover .step-glow {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.05);
}

/* PRICING CARD ICONS - Luxury Design */
.pricing-card-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: 
        linear-gradient(145deg, rgba(12, 74, 110, 0.15), rgba(30, 58, 138, 0.1)),
        linear-gradient(225deg, rgba(56, 189, 248, 0.05), transparent),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1), transparent 60%);
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 
        0 15px 35px -10px rgba(56, 189, 248, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card-icon.popular-icon {
    background: 
        linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.15)),
        linear-gradient(225deg, rgba(96, 165, 250, 0.1), transparent),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.2), transparent 60%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 8px 20px -8px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card-enhanced:hover .pricing-card-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px -10px rgba(56, 189, 248, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* TRUST ICONS - Enterprise Feel */
.trust-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: 
        linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05)),
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.1), transparent 50%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: rgba(16, 185, 129, 1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 
        0 8px 25px -8px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-indicator:hover .trust-icon {
    transform: scale(1.05);
    background: 
        linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.06)),
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.1), transparent 50%);
    box-shadow: 
        0 4px 15px -5px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* STATUS ICONS - Professional Grade */
.status-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.status-card-safe .status-icon {
    background: 
        linear-gradient(145deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    color: rgba(16, 185, 129, 1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 10px 25px -8px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.status-card-warning .status-icon {
    background: 
        linear-gradient(145deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    color: rgba(245, 158, 11, 1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 10px 25px -8px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.status-card-danger .status-icon {
    background: 
        linear-gradient(145deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    color: rgba(239, 68, 68, 1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 
        0 10px 25px -8px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* LOGO ICON - Brand Premium */
.logo-icon {
    background: 
        linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    padding: 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.logo-container:hover .logo-icon {
    transform: scale(1.03);
    background: 
        linear-gradient(145deg, rgba(59, 130, 246, 0.12), rgba(29, 78, 216, 0.06)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    box-shadow: 0 2px 8px -2px rgba(59, 130, 246, 0.15);
}

/* SCANNING ICONS - Clean Tech Feel */
.scanning-icon {
    animation: scanRotate 3s linear infinite;
    color: rgba(59, 130, 246, 1);
    filter: none;
    text-shadow: none;
}

/* PREMIUM ANIMATIONS */
/* Breathe animation removed - no glow */

/* Premium pulse animation removed - no glow */

@keyframes scanRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scanPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* GENERAL ICON IMPROVEMENTS */
.icon {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.icon-accent {
    color: rgba(56, 189, 248, 1);
}

.icon-success {
    color: rgba(16, 185, 129, 1);
}

.icon-warning {
    color: rgba(245, 158, 11, 1);
}

.icon-danger {
    color: rgba(239, 68, 68, 1);
}

/* RESPONSIVE ICON SCALING */
@media (max-width: 768px) {
    .step-icon {
        width: 5rem;
        height: 5rem;
    }
    
    .pricing-card-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .trust-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
    
    .status-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

/* ===== STEP COMPONENT COMPLETIONS ===== */

.scan-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    animation: scan-pulse 2s ease-in-out infinite;
}

@keyframes scan-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.step-content {
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.step-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
    opacity: 1;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.step-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: 
        linear-gradient(145deg, rgba(56, 189, 248, 0.03), rgba(59, 130, 246, 0.02)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02), transparent 50%);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(56, 189, 248, 0.05);
    backdrop-filter: blur(5px);
}

.step-feature:hover {
    background: 
        linear-gradient(145deg, rgba(56, 189, 248, 0.05), rgba(59, 130, 246, 0.03)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 50%);
    transform: translateX(3px) scale(1.02);
    border-left: 3px solid rgba(56, 189, 248, 0.3);
    padding-left: 0.7rem;
    border-color: rgba(56, 189, 248, 0.1);
    box-shadow: 0 2px 8px -2px rgba(56, 189, 248, 0.1);
}

/* Flow Animations */
@keyframes animate-flow-right {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.animate-flow-right {
    animation: animate-flow-right 3s ease-in-out infinite;
}

.flow-arrow {
    width: 2rem;
    height: 2rem;
    background: 
        linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(59, 130, 246, 0.1)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-bounce 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 4px 12px -4px rgba(56, 189, 248, 0.2);
}

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

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Call to Action Buttons */
.cta-button {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-button.primary {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(29, 78, 216, 0.9)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    color: white;
    box-shadow: 
        0 8px 25px -8px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 30px -10px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(59, 130, 246, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: 
        linear-gradient(145deg, rgba(12, 74, 110, 0.1), rgba(30, 58, 138, 0.05)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05), transparent 50%);
    color: var(--primary-light);
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.cta-button.secondary:hover {
    background: 
        linear-gradient(145deg, rgba(56, 189, 248, 0.08), rgba(59, 130, 246, 0.05)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 50%);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 6px 20px -8px rgba(56, 189, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.3s ease;
    opacity: 0;
}

.cta-button:hover .button-glow {
    left: 100%;
    opacity: 0.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-card-enhanced.popular {
        transform: none;
        margin-top: 1rem;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-card-enhanced {
        padding: 1.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-icon {
        width: 5rem;
        height: 5rem;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Text Utilities */
.text-gradient {
    background: linear-gradient(90deg, #38bdf8, #3b82f6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced utility classes */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Additional animations */
@keyframes subtle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

.animate-subtle-float {
    animation: subtle-float 3s ease-in-out infinite;
}

/* ===== COMPREHENSIVE SECTION SPACING SYSTEM ===== */
/* Consistent section spacing across all breakpoints */
section {
    position: relative;
    scroll-margin-top: 5rem; /* For smooth scroll offset */
    transition: background 0.8s ease-in-out;
}

/* Specific override for features section */
#features {
    overflow: visible;
    min-height: auto;
}

#features .section-container {
    overflow: visible;
}

#features .grid {
    overflow: visible;
}

#features .enhanced-breach-card {
    overflow: visible;
    height: auto;
    min-height: auto;
}

/* Smooth gradient flow between sections */
section:not(#home) {
    position: relative;
}

section:not(#home)::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 100%);
    z-index: 1;
}

/* Hero section - no top padding needed */
#home {
    padding-top: 0;
    padding-bottom: clamp(4rem, 8vw, 8rem);
}

/* Standard sections */
#features,
#pricing,
#about,
#contact,
#how-it-works {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

/* Special sections - results/safe with tighter spacing */
#results-section,
#safe-section,
#loading-section {
    margin-top: 0;
    padding-top: clamp(3rem, 6vw, 5rem) !important;
    padding-bottom: clamp(3rem, 6vw, 5rem) !important;
    z-index: 30;
}

/* Ensure no conflicting margins */
.max-w-7xl {
    margin-left: auto;
    margin-right: auto;
}

/* Container consistency */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .section-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Fix specific spacing issues */
.relative {
    position: relative;
}

/* Remove excess margins from cards and components */
.stat-card,
.pricing-card,
.pricing-card-enhanced,
.testimonial-card,
.step-card {
    margin-bottom: 0;
}

/* Grid spacing optimization */
.grid {
    gap: clamp(1rem, 3vw, 2rem);
}

/* Responsive section adjustments */
@media (max-width: 768px) {
    #features,
    #pricing,
    #about,
    #contact,
    #how-it-works {
        padding-top: clamp(3rem, 8vw, 5rem);
        padding-bottom: clamp(3rem, 8vw, 5rem);
    }
    
    #results-section,
    #safe-section,
    #loading-section {
        padding-top: clamp(2rem, 5vw, 3rem) !important;
        padding-bottom: clamp(2rem, 5vw, 3rem) !important;
    }
}

@media (max-width: 640px) {
    section {
        scroll-margin-top: 4rem;
    }
    
    .section-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== SCROLL BEHAVIOR OPTIMIZATIONS ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

/* Prevent content shift during loading */
body {
    overflow-x: hidden;
}

/* Ensure smooth transitions between sections */
section {
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize animations for 60fps */
* {
    will-change: auto;
}

.modern-button,
.step-card,
.pricing-card-enhanced,
.card-hover {
    will-change: transform;
}

/* Loading state optimization */
#loading-section,
#results-section,
#safe-section {
    contain: layout style;
}

/* Fix any edge cases with container overflow */
.section-container {
    overflow-x: hidden;
}

/* Ensure proper stacking for form elements */
form {
    position: relative;
    z-index: 10;
}

/* Optimize scroll snap for better UX */
@media (prefers-reduced-motion: no-preference) {
    section {
        scroll-snap-align: start;
    }
    
    main {
        scroll-snap-type: y mandatory;
    }
}

/* Remove scroll snap for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===== ACCESSIBILITY - ENTERPRISE ICON SYSTEM ===== */
@media (prefers-reduced-motion: reduce) {
    /* Disable all icon animations for accessibility */
    .step-icon,
    .pricing-card-icon,
    .trust-icon,
    .status-icon,
    .logo-icon,
    .scanning-icon {
        animation: none !important;
        transform: none !important;
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
    }
    
    /* Disable hover transforms but keep subtle color changes */
    .step-card:hover .step-icon,
    .pricing-card-enhanced:hover .pricing-card-icon,
    .trust-indicator:hover .trust-icon,
    .logo-container:hover .logo-icon {
        transform: none !important;
        background: rgba(56, 189, 248, 0.08) !important;
        border-color: rgba(56, 189, 248, 0.2) !important;
    }
    
    /* Disable complex animations */
    .step-glow,
    .scan-pulse,
    .breathe,
    .premium-pulse,
    .scanRotate,
    .scanPulse {
        animation: none !important;
        opacity: 0 !important;
    }
    
    /* Disable all glow effects */
    .button-glow {
        display: none !important;
    }
    
    /* Keep simple hover states for usability */
    .card-hover:hover,
    .step-card:hover,
    .pricing-card-enhanced:hover,
    .modern-button:hover,
    .cta-button:hover,
    .trust-badge:hover,
    .stat-card:hover {
        transform: none !important;
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        background: rgba(56, 189, 248, 0.05) !important;
    }
}

/* Fix footer spacing and layout issues */
footer {
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
}







/* ===== 3 SIMPLE STEPS - CLEAN MINIMAL DESIGN ===== */
.step-card {
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
    padding: 1.5rem;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(56, 189, 248, 0.3) 0%, 
        rgba(30, 58, 138, 0.5) 50%, 
        rgba(56, 189, 248, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: rgba(56, 189, 248, 0.3);
}

/* Remove old step animations */
.step-number, .step-glow, .step-line {
    display: none !important;
}



/* ===== PREMIUM FAQ DESIGN - WORLD CLASS ===== */
.faq-item {
    perspective: 1000px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.5) 50%, 
        transparent 100%);
    border-radius: 1.5rem 1.5rem 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.faq-item:hover .faq-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.06);
}

.faq-item:hover .faq-card::before {
    opacity: 0;
    display: none;
}

.faq-question {
    background: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    position: relative;
}

.faq-question:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-question:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-question:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

button:focus, button:focus-visible, button:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

* {
    outline: none !important;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

*:active {
    outline: none !important;
    box-shadow: none !important;
}

.faq-question, .faq-question:focus, .faq-question:focus-visible, .faq-question:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-question:hover {
    background: none !important;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(30, 58, 138, 0.25));
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(56, 189, 248, 0.9);
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.faq-item:hover .faq-number {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(30, 58, 138, 0.3));
    border-color: rgba(56, 189, 248, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.1);
}

.faq-icon svg {
    transition: all 0.2s ease;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
    color: rgba(56, 189, 248, 0.9) !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    position: relative;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.3) 20%, 
        rgba(30, 58, 138, 0.5) 50%, 
        rgba(56, 189, 248, 0.3) 80%, 
        transparent 100%);
    display: none;
}

.faq-content p {
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.faq-content .mt-4 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.faq-content ul {
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.faq-content li {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
}

.faq-content li:hover {
    background: rgba(56, 189, 248, 0.05);
    padding-left: 0.5rem;
    transform: translateX(8px);
}

/* FAQ Color Theme - Unified */
/* FAQ Styles */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    transition: max-height 0.3s ease;
}

.faq-icon {
    transition: transform 0.3s ease;
}

/* Staggered Animation Entrance */
.faq-item:nth-child(1) { animation: slideInUp 0.6s ease-out 0.1s both; }
.faq-item:nth-child(2) { animation: slideInUp 0.6s ease-out 0.2s both; }
.faq-item:nth-child(3) { animation: slideInUp 0.6s ease-out 0.3s both; }
.faq-item:nth-child(4) { animation: slideInUp 0.6s ease-out 0.4s both; }
.faq-item:nth-child(5) { animation: slideInUp 0.6s ease-out 0.5s both; }
.faq-item:nth-child(6) { animation: slideInUp 0.6s ease-out 0.6s both; }

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem !important;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .faq-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-item:hover .faq-card {
        transform: translateY(-1px);
    }
}

/* Fix: Increase right padding for more space between input text and button */
input[name="email"] {
    padding-right: 150px !important; /* Increased space for the button */
    box-sizing: border-box;
}

.pwndb-logo {
    width: 120px;
    height: 40px;
    background-image: url('/static/img/logo-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
}

.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

.spinner {
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  border-top-color: #38bdf8 !important;
  animation: spin 0.7s linear infinite !important;
  vertical-align: middle;
  margin-right: 0.5em;
}
.loading {
  cursor: wait !important;
  opacity: 0.8 !important;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.get-in-touch-btn {
    background-image: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(29, 78, 216, 0.9)),
                      radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    color: #fff;
    border: none;
    transition: filter 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(59,130,246,0.10);
}
.get-in-touch-btn:hover, .get-in-touch-btn:focus {
    filter: brightness(1.08) saturate(1.2);
    box-shadow: 0 4px 16px 0 rgba(59,130,246,0.18);
}

.stat-glow {
  text-shadow: 0 1px 6px #fff2, 0 0px 1px #fff4;
}


