/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 3D Hero Dynamic Content Styles */
.dynamic-content {
    display: none;
    animation: slideInFade 0.8s ease-out;
}

.dynamic-content.active {
    display: block;
}

.hero-title-3d {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-3d {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.feature-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-text strong {
    color: #1e293b;
    font-weight: 600;
}

.highlight-text span {
    color: #64748b;
    font-size: 0.9rem;
}

.hero-actions-3d {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary-3d, .btn-secondary-3d {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-3d {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-secondary-3d {
    background: rgba(255, 255, 255, 0.1);
    color: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-primary-3d:hover .btn-bg,
.btn-secondary-3d:hover .btn-bg {
    transform: scaleX(1);
}

.btn-secondary-3d:hover {
    color: white;
    border-color: transparent;
}

.hero-stats-3d {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-3d {
    text-align: center;
}

.stat-number-3d {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-label-3d {
    color: #64748b;
    font-size: 0.9rem;
}

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

/* Responsive adjustments for dynamic content */
@media (max-width: 768px) {
    .hero-title-3d {
        font-size: 2.5rem;
    }
    
    .feature-highlights {
        margin: 1.5rem 0;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .hero-actions-3d {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats-3d {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .btn-primary-3d, .btn-secondary-3d {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 80px;
    box-sizing: border-box;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-brand h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    gap: 0.25rem;
    z-index: 1002;
    position: relative;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background-color: #2563eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #2563eb;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-greeting {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
}

.btn-secondary, .btn-primary {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary {
    color: #64748b;
    border: 1px solid #e2e8f0;
    background: transparent;
}

.btn-secondary:hover {
    color: #2563eb;
    border-color: #2563eb;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: 1px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .nav {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-container {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.5rem;
        border-top: 1px solid #e2e8f0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        margin-top: 0.5rem;
        padding: 0;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-dropdown .dropdown-menu li {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: #64748b;
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-auth {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid #e2e8f0;
    }
    
    .nav-auth a {
        text-align: center;
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
    }
    
    .nav {
        padding: 0.75rem 1rem;
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        height: 70px;
    }
    
    .nav-container {
        padding: 1rem;
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    .mobile-menu-toggle {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .nav-brand h2 {
        font-size: 1.25rem;
    }
    
    .brand-link {
        gap: 0.5rem;
    }
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #2563eb;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* 3D Animated Hero Section */
.hero-3d {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.hero-content-3d {
    z-index: 2;
    position: relative;
}

.hero-content-3d .hero-title-3d {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.hero-content-3d .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-3d .hero-description-3d {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-content-3d .hero-actions-3d {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-content-3d .btn-primary-3d,
.hero-content-3d .btn-secondary-3d {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-content-3d .btn-primary-3d {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.hero-content-3d .btn-secondary-3d {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.hero-content-3d .btn-primary-3d:hover,
.hero-content-3d .btn-secondary-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content-3d .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.hero-content-3d .btn-primary-3d:hover .btn-bg,
.hero-content-3d .btn-secondary-3d:hover .btn-bg {
    left: 100%;
}

.hero-content-3d .feature-highlights {
    margin: 2rem 0;
}

.hero-content-3d .highlight-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-content-3d .highlight-text strong {
    color: white;
}

.hero-content-3d .highlight-text span {
    color: rgba(255, 255, 255, 0.8);
}

.hero-stats-3d {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-3d {
    text-align: center;
}

.stat-number-3d {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label-3d {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}


/* Animation Container */
.animation-container {
    position: relative;
    z-index: 2;
}

.animation-scene {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.demo-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.demo-section.active {
    display: block;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.demo-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.step-indicator {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-step {
    text-align: center;
    opacity: 0.5;
    transition: all 0.5s ease;
    transform: scale(0.9);
}

.process-step.active {
    opacity: 1;
    transform: scale(1);
}

.step-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Domain Input Animation */
.domain-box,
.email-input-box {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.domain-icon,
.email-icon {
    font-size: 1.2rem;
}

.typing-cursor {
    width: 2px;
    height: 1.2rem;
    background: #3b82f6;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Scanning Animation */
.scanning-animation {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.radar-circle {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    position: relative;
}

.radar-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 35px;
    background: #3b82f6;
    transform-origin: bottom;
    transform: translate(-50%, -100%) rotate(0deg);
    animation: radar 2s linear infinite;
}

@keyframes radar {
    0% { transform: translate(-50%, -100%) rotate(0deg); }
    100% { transform: translate(-50%, -100%) rotate(360deg); }
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: scan 1.5s ease-in-out infinite;
}

.scan-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.scan-line:nth-child(2) { top: 50%; animation-delay: 0.3s; }
.scan-line:nth-child(3) { top: 80%; animation-delay: 0.6s; }

@keyframes scan {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
}

.scan-text {
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #60a5fa;
}

/* Email Discovery Animation */
.email-discovery {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    color: #374151;
}

.found-emails {
    margin-bottom: 1rem;
}

.email-item {
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    animation: slideInRight 0.5s ease-out;
    animation-fill-mode: both;
}

.email-item:nth-child(1) { animation-delay: 0.1s; }
.email-item:nth-child(2) { animation-delay: 0.2s; }
.email-item:nth-child(3) { animation-delay: 0.3s; }
.email-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.discovery-counter {
    text-align: center;
    font-weight: 600;
    color: #059669;
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Validation Checks */
.validation-checks {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    color: #374151;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon.loading {
    animation: spin 1s linear infinite;
}

/* Progress Ring */
.progress-ring {
    position: relative;
}

.progress-ring-circle {
    stroke-dasharray: 327;
    stroke-dashoffset: 327;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    to { stroke-dashoffset: 80; }
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #dcdfe4;
}

.score-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.score-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Verification Results */
.verification-result {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    color: #374151;
}

.result-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-icon {
    font-size: 1.5rem;
}

.status-title {
    font-weight: 600;
    color: #059669;
}

.status-details {
    font-size: 0.8rem;
    color: #6b7280;
}

.result-details {
    space-y: 0.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.detail-item .valid {
    color: #059669;
    font-weight: 500;
}

/* Results Summary */
.results-summary {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    color: #374151;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-icon {
    font-size: 2rem;
}

.result-stats .stat {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.download-btn {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #047857;
}

/* Demo Controls */
.demo-controls {
    margin-top: 40px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.demo-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.demo-btn.active {
    background: rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.demo-icon {
    font-size: 1.1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-email,
.float-checkmark {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 10%; left: 10%; animation-delay: 0s; }
.float-2 { top: 20%; right: 15%; animation-delay: 1s; }
.float-3 { bottom: 30%; left: 5%; animation-delay: 2s; }
.float-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
.float-5 { top: 60%; left: 20%; animation-delay: 4s; }
.float-6 { top: 40%; right: 10%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFade {
    0% { 
        opacity: 0; 
        transform: translateX(-30px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0);
    }
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

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

.service-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-card:nth-child(2):hover {
    border-color: #10b981;
}

.service-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-card > p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    color: #475569;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-demo {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.demo-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.demo-input:focus {
    outline: none;
    border-color: #2563eb;
}

.demo-btn {
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.demo-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.service-card:nth-child(2) .demo-btn {
    background: #10b981;
}

.service-card:nth-child(2) .demo-btn:hover {
    background: #059669;
}

.service-cta {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.service-card:nth-child(2) .service-cta {
    color: #10b981;
}

.service-card:nth-child(2) .service-cta:hover {
    color: #059669;
}

/* Verifier Section */
.verifier-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.verifier-tool {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.verifier-tool h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.verifier-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #2563eb;
}

.verify-btn {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.verify-btn:hover {
    background: #059669;
}

.verifier-result {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.verifier-result.valid {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.verifier-result.invalid {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.coming-soon {
    position: relative;
}

.badge {
    background: #fbbf24;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .verifier-form {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-demo {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .verifier-tool {
        padding: 2rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .feature-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

.hero-verifier {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #fff!important;
}

.verifier-tool {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-container {
    /* display: flex; */
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.input-wrapper {
    flex: 1;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: #374151;
}

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

.verify-btn {
    background: #00D4AA;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.verify-btn:hover {
    background: #00b894;
    transform: translateY(-1px);
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.result-email {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.status-indicator .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.status-valid {
    background: #dcfce7;
    color: #166534;
}

.status-badge.status-invalid {
    background: #fef2f2;
    color: #dc2626;
}

.status-badge.status-disposable {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.status-role-based {
    background: #dbeafe;
    color: #2563eb;
}

.result-score {
    text-align: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4AA, #00b894);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
}

.score-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #e5e7eb;
}

.detail-label {
    font-weight: 500;
    color: #6b7280;
}

.detail-value {
    font-weight: 600;
}

.detail-value.positive {
    color: #059669;
}

.detail-value.negative {
    color: #dc2626;
}

.detail-value.warning {
    color: #d97706;
}

.suggestions-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.suggestions-section h4 {
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 600;
}

.suggestion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
}

.suggestion-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Features Hunter Style */
.features-hunter {
    padding: 6rem 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-hunter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card-hunter {
    text-align: center;
    padding: 2rem;
}

.feature-icon-hunter {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-card-hunter h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card-hunter p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Hunter Style */
.cta-hunter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content-hunter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content-hunter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: #00D4AA;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background: #00b894;
    transform: translateY(-2px);
}

/* Email Extractor Page Styles */
.hero-extractor {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.extractor-tool {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.domain-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: #374151;
}

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

.extract-btn {
    background: #00D4AA;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.extract-btn:hover {
    background: #00b894;
    transform: translateY(-1px);
}

/* Results Specific to Extractor */
.score-green {
    background: linear-gradient(135deg, #00D4AA, #00b894);
}

.sources-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.sources-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.source-icon {
    font-size: 1.5rem;
}

.source-info {
    display: flex;
    flex-direction: column;
}

.source-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.source-label {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Emails Section */
.emails-section {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.section-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.export-buttons {
    display: flex;
    gap: 0.5rem;
}

.export-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.emails-list {
    padding: 0;
}

.email-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.3s ease;
}

.email-item:hover {
    background: #f9fafb;
}

.email-item:last-child {
    border-bottom: none;
}

.email-main {
    flex: 1;
}

.email-address {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    display: block;
    margin-bottom: 0.5rem;
}

.email-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.email-type {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-generic {
    background: #dbeafe;
    color: #1e40af;
}

.type-personal {
    background: #dcfce7;
    color: #166534;
}

.type-executive {
    background: #fef3c7;
    color: #92400e;
}

.confidence-badge {
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.email-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.source-tag {
    padding: 0.25rem 0.5rem;
    background: #f9fafb;
    color: #6b7280;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid #e5e7eb;
}

.verify-email-btn {
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-email-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.show-more {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #f3f4f6;
}

.show-more-btn {
    padding: 0.75rem 1.5rem;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Error Card */
.error-card {
    text-align: center;
    padding: 3rem;
}

.error-content {
    max-width: 400px;
    margin: 0 auto;
}

.error-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.error-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.error-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.domain-suggestions {
    text-align: center;
}

.domain-suggestions h4 {
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 600;
}

/* Status Badge Success */
.status-badge.status-success {
    background: #dcfce7;
    color: #166534;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive Styles for 3D Hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-3d {
        padding: 6rem 0 3rem;
    }
    
    .hero-title-3d {
        font-size: 2.5rem;
    }
    
    .hero-actions-3d {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats-3d {
        justify-content: center;
        gap: 2rem;
    }
    
    .animation-scene {
        padding: 1.5rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-btn {
        width: 200px;
        justify-content: center;
    }
    
    .feature-highlights {
        margin: 1.5rem 0;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .verify-btn {
        align-self: stretch;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .result-score {
        align-self: flex-start;
    }
    
    .score-circle {
        margin-left: 0;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-hunter {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content-hunter h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-verifier {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-email {
        font-size: 1.4rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .features-hunter {
        padding: 4rem 0;
    }
    
    .feature-card-hunter {
        padding: 1.5rem;
    }
    
    .cta-hunter {
        padding: 3rem 0;
    }
}

/* Responsive Styles for Email Extractor */
@media (max-width: 768px) {
    .hero-extractor {
        padding: 100px 0 60px;
    }
    
    .sources-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .export-buttons {
        align-self: stretch;
    }
    
    .email-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .email-main {
        width: 100%;
    }
    
    .email-meta {
        align-self: stretch;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .sources-section {
        padding: 1rem;
    }
    
    .source-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .source-icon {
        font-size: 1.25rem;
    }
    
    .source-count {
        font-size: 1.25rem;
    }
    
    .email-item {
        padding: 1rem;
    }
    
    .email-badges {
        margin-top: 0.5rem;
    }
    
    .email-meta {
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
    
    .verify-email-btn {
        flex: 1;
        text-align: center;
    }
    
    .export-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .export-btn {
        flex: 1;
    }
}

/* Pricing Sections for Both Pages */
.pricing-verifier,
.pricing-extractor {
    padding: 6rem 0;
    background: #f8fafc;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    color: #374151;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2563eb;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: #fbbf24;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Grids */
.pricing-grid-verifier,
.pricing-grid-extractor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card-verifier,
.pricing-card-extractor {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-verifier:hover,
.pricing-card-extractor:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-verifier.featured,
.pricing-card-extractor.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-card-verifier.featured:hover,
.pricing-card-extractor.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.price-container {
    margin: 1.5rem 0;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.plan-description {
    color: #6b7280;
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #374151;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.plan-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.plan-btn.featured {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.plan-btn.featured:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Pricing Features */
.pricing-features {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.pricing-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
    justify-content: center;
}

.feature-item-pricing span {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

/* Different accent colors for extractor */
.pricing-extractor .feature-item-pricing svg path {
    stroke: #FF6B35;
}

.pricing-extractor .pricing-card-extractor.featured {
    border-color: #FF6B35;
}

.pricing-extractor .popular-ribbon {
    background: #FF6B35;
}

.pricing-extractor .plan-btn.featured {
    background: #FF6B35;
    border-color: #FF6B35;
}

.pricing-extractor .plan-btn.featured:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid-verifier,
    .pricing-grid-extractor {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card-verifier.featured,
    .pricing-card-extractor.featured {
        transform: none;
    }
    
    .pricing-card-verifier.featured:hover,
    .pricing-card-extractor.featured:hover {
        transform: translateY(-4px);
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-verifier,
    .pricing-extractor {
        padding: 4rem 0;
    }
    
    .pricing-card-verifier,
    .pricing-card-extractor {
        padding: 2rem 1.5rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* Additional Mobile Responsive Styles for Hero Section */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .animation-container {
        order: -1;
    }
    
    .demo-controls {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .demo-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-3d {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }
    
    .hero-content-3d .hero-title-3d {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content-3d .hero-description-3d {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content-3d .feature-highlights {
        margin: 1.5rem 0;
    }
    
    .hero-content-3d .highlight-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .hero-content-3d .hero-actions-3d {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .hero-stats-3d {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-content-3d .btn-primary-3d, 
    .hero-content-3d .btn-secondary-3d {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .animation-scene {
        padding: 1.5rem;
    }
    
    .demo-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-3d {
        padding: 5rem 0 2rem;
        margin-top: 60px;
    }
    
    .hero-content-3d .hero-title-3d {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content-3d .hero-description-3d {
        font-size: 1rem;
    }
    
    .hero-content-3d .feature-highlights {
        margin: 1rem 0;
    }
    
    .hero-content-3d .highlight-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .hero-content-3d .highlight-icon {
        font-size: 1.25rem;
    }
    
    .hero-content-3d .highlight-text strong {
        font-size: 0.9rem;
    }
    
    .hero-content-3d .highlight-text span {
        font-size: 0.8rem;
    }
    
    .hero-content-3d .btn-primary-3d, 
    .hero-content-3d .btn-secondary-3d {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .stat-number-3d {
        font-size: 1.5rem;
    }
    
    .stat-label-3d {
        font-size: 0.8rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .animation-scene {
        padding: 1rem;
    }
    
    .demo-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .demo-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
}

/* Tab System Styles */
.service-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.tab-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-features span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Pricing Tabs Styles */
.pricing-tabs {
    margin-top: 3rem;
}

.pricing-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    min-width: 250px;
}

.pricing-tab-btn.active {
    border-color: #2563eb;
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.pricing-tab-btn:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-tab-btn .tab-icon {
    font-size: 1.5rem;
}

.tab-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tab-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.tab-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.pricing-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.toggle-label {
    font-weight: 500;
    color: #64748b;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2563eb;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

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

/* Mobile Responsive for Tabs */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        border-bottom: none;
        border-radius: 8px;
        border: 2px solid #e2e8f0;
        background: white;
    }
    
    .tab-btn.active {
        border-color: #2563eb;
        background: #f8fafc;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .pricing-tab-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .pricing-tab-btn {
        min-width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .step-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .pricing-tab-btn {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .tab-title {
        font-size: 1rem;
    }
    
    .tab-subtitle {
        font-size: 0.8rem;
    }
}

/* Testimonials & Trust Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

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

.testimonial-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Trust Indicators Row */
.trust-indicators-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.trust-icon {
    font-size: 2rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.trust-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .trust-indicators-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .trust-indicators-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .author-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.about-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
}

.mission-card .card-icon, .vision-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h2, .vision-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    padding: 1rem;
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    border-radius: 0 8px 8px 0;
}

.highlight strong {
    color: #2563eb;
    font-weight: 600;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bar {
    width: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out;
}

.placeholder-content p {
    color: #64748b;
    font-weight: 500;
}

@keyframes growBar {
    from { height: 0; }
    to { height: var(--height); }
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #e2e8f0;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2563eb;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Recognition Section */
.recognition-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-4px);
}

.award-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.award-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* About CTA Section */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta .btn-primary,
.about-cta .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta .btn-primary {
    background: white;
    color: #2563eb;
}

.about-cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.about-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Enhanced About Page Styles */

/* About Hero with Floating Shapes */
.about-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: floatShape 20s infinite linear;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 70%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-weight: 500;
    color: white;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.typing-animation {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    animation: typing 3s steps(12, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-suffix {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

.stat-progress {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 1rem auto 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    width: 0%;
    border-radius: 2px;
    transition: width 2s ease-out;
}

/* Interactive Timeline */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #e2e8f0, #2563eb, #e2e8f0);
    transform: translateX(-50%);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60%;
    padding-left: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 60%;
    padding-right: 2rem;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #2563eb;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    width: 30px;
    height: 30px;
    border-width: 6px;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.dot-inner {
    width: 100%;
    height: 100%;
    background: #2563eb;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.timeline-item.active .dot-inner {
    transform: scale(1);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Enhanced Team Section */
.team-member {
    position: relative;
    overflow: hidden;
}

.member-photo {
    position: relative;
    margin-bottom: 1.5rem;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.member-photo:hover .photo-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.member-skills {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.member-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.stat-desc {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.member-social {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Animated Counter Script Support */
.counter-animated {
    transition: all 0.3s ease;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .typing-animation {
        font-size: 2.5rem;
        white-space: normal;
        border-right: none;
        animation: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: left;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .member-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-cta .btn-primary,
    .about-cta .btn-secondary {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
}

/* AJAX Authentication Styles */
.ajax-message {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.ajax-message.show {
    opacity: 1;
    transform: translateY(0);
}

.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

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

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Enhanced button loading states */
.btn-primary.loading,
.btn-secondary.loading {
    pointer-events: none;
}

.btn-primary.loading span,
.btn-secondary.loading span {
    opacity: 0.7;
}

/* Smooth transitions for auth forms */
.auth-form {
    transition: all 0.3s ease;
}

.auth-form.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Enhanced user menu animations */
.user-menu {
    animation: slideInRight 0.3s ease;
}

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

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.contact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 50%;
    animation: floatContactShape 25s infinite linear;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.contact-shape.shape-2 {
    width: 140px;
    height: 140px;
    top: 50%;
    right: 10%;
    animation-delay: -8s;
}

.contact-shape.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 60%;
    animation-delay: -16s;
}

@keyframes floatContactShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-25px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-35px) rotate(270deg);
        opacity: 0.5;
    }
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-title {
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 2px;
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.contact-stat .stat-icon {
    font-size: 2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.contact-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contact Hero Badge */
.contact-badge {
    margin: auto;
    max-width: 300px;
    display: block;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    animation: badgePulse 2s ease-in-out infinite !important;
}

/* Contact Methods Section */
.contact-methods {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.submit-btn .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-bg {
    left: 100%;
}

/* Form Success/Error Messages */
.form-success,
.form-error {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.form-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #10b981;
    color: #065f46;
}

.form-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #ef4444;
    color: #991b1b;
}

.success-icon,
.error-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-success h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Information */
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-link:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.1rem;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #374151;
    padding: 0.5rem;
}

.address div {
    line-height: 1.5;
}

/* FAQ Section */
.contact-faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span:first-child {
    flex: 1;
    font-size: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-cta .btn-primary,
.contact-cta .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-cta .btn-primary {
    background: white;
    color: #2563eb;
}

.contact-cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.contact-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-shapes {
        display: none;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-cta .btn-primary,
    .contact-cta .btn-secondary {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
}

/* Authentication Pages Styles */

/* Auth Hero Section */
.auth-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
    margin-top: 80px;
}

.auth-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.auth-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: floatAuthShape 30s infinite linear;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-shape.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.auth-shape.shape-2 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 10%;
    animation-delay: -10s;
}

.auth-shape.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 15%;
    animation-delay: -20s;
}

.auth-shape.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatAuthShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.4;
    }
}

/* Auth Container */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    min-height: 700px;
}

/* Auth Branding */
.auth-branding {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.auth-branding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    opacity: 0.3;
}

.branding-content {
    position: relative;
    z-index: 2;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.auth-branding h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auth-branding p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature Points */
.feature-points {
    margin: 2rem 0;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.point-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Social Proof */
.social-proof {
    margin-top: 2rem;
}

.proof-stats {
    display: flex;
    gap: 2rem;
}

.proof-stat {
    text-align: center;
}

.proof-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.proof-stat .stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Testimonial */
.testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial blockquote {
    font-size: 0.95rem;
    font-style: italic;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Auth Form Section */
.auth-form-section {
    padding: 5rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafbfc;
    min-height: 100%;
}

.form-container {
    max-width: 476px;
    margin: 0 auto;
    width: 100%;
    padding: 18px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

/* Auth Form */
.auth-form {
    margin-bottom: 2rem;
}

.auth-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
}

/* Password Input */
.password-input {
    position: relative;
    width: 100%;
}

.password-input input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.password-toggle:hover {
    background: #f1f5f9;
}

.toggle-icon {
    font-size: 1rem;
    opacity: 0.6;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength.weak::after {
    content: '';
    display: block;
    height: 100%;
    width: 33%;
    background: #ef4444;
}

.password-strength.medium::after {
    content: '';
    display: block;
    height: 100%;
    width: 66%;
    background: #f59e0b;
}

.password-strength.strong::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: #10b981;
}

/* Plan Selector */
.plan-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

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

.plan-option {
    position: relative;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-option label {
    display: block;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.plan-option input[type="radio"]:checked + label {
    border-color: #667eea;
    background: #f8fafc;
}

.plan-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.plan-price {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

.plan-features {
    font-size: 0.8rem;
    color: #64748b;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
    margin: 0;
}

/* Links */
.link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.9rem;
}

/* Submit Button */
.auth-form .submit-btn {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-top: 1rem;
}

.auth-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.auth-form .submit-btn .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-form .submit-btn:hover .btn-bg {
    left: 100%;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin: 2rem 0;
}

.form-footer p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Social Signup */
.social-signup {
    margin-top: 1.5rem;
    width: 100%;
}

.divider {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

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

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #374151;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.social-btn:hover {
    border-color: #667eea;
    background: #f8fafc;
}

/* Demo Credentials */
.demo-credentials {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.demo-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.demo-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.25rem 0;
}

/* Success/Error Messages */
.auth-form .form-success,
.auth-form .form-error {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-form .form-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #10b981;
    color: #065f46;
}

.auth-form .form-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #ef4444;
    color: #991b1b;
}

.auth-form .success-icon,
.auth-form .error-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.auth-form .form-success h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-form .form-success .btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.auth-form .form-success .btn-primary:hover {
    background: #059669;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 1rem auto;
    }
    
    .auth-branding {
        padding: 2.5rem 2rem;
        text-align: center;
        min-height: auto;
    }
    
    .auth-branding h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .auth-branding p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .proof-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .feature-points {
        margin: 1.5rem 0;
    }
    
    .testimonial {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .auth-hero {
        padding: 1rem 0.5rem;
        min-height: auto;
    }
    
    .auth-shapes {
        display: none;
    }
    
    .auth-container {
        margin: 0.5rem auto;
        max-width: 95%;
        border-radius: 16px;
        min-height: auto;
    }
    
    .auth-branding {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .auth-branding h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .auth-form-section {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .form-container {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .plan-selector {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .feature-point {
        font-size: 0.9rem;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .testimonial blockquote {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .auth-hero {
        padding: 0.5rem;
        min-height: 100vh;
    }
    
    .auth-container {
        margin: 0.25rem auto;
        max-width: 98%;
        border-radius: 12px;
    }
    
    .auth-form-section {
        padding: 1.5rem 1rem;
        background: white;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .auth-branding {
        padding: 1.5rem 1rem;
    }
    
    .auth-branding h1 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .auth-branding p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .brand-logo h2 {
        font-size: 1.5rem;
    }
    
    .proof-stats {
        gap: 0.75rem;
    }
    
    .proof-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-point {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .point-icon {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .password-input input {
        padding-right: 2.75rem;
    }
    
    .password-toggle {
        right: 10px;
        padding: 0.2rem;
    }
    
    .plan-option label {
        padding: 0.75rem;
    }
    
    .plan-name {
        font-size: 0.85rem;
    }
    
    .plan-price {
        font-size: 1rem;
    }
    
    .plan-features {
        font-size: 0.75rem;
    }
    
    .social-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .testimonial {
        padding: 0.875rem;
        margin-top: 1rem;
    }
    
    .testimonial blockquote {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .author-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .author-name {
        font-size: 0.8rem;
    }
    
    .author-role {
        font-size: 0.75rem;
    }
    
    .demo-credentials {
        margin-top: 1.5rem;
        padding: 0.875rem;
    }
    
    .demo-info h4 {
        font-size: 0.85rem;
    }
    
    .demo-info p {
        font-size: 0.8rem;
    }
    
    .checkbox-group {
        gap: 0.4rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .form-footer {
        margin: 1.5rem 0;
    }
    
    .form-footer p {
        font-size: 0.85rem;
    }
    
    .divider {
        margin-bottom: 1rem;
    }
    
    .divider span {
        font-size: 0.85rem;
        padding: 0 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .auth-container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .auth-hero {
        padding: 0.25rem;
    }
    
    .auth-form-section,
    .auth-branding {
        padding: 1.25rem 0.875rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .auth-branding h1 {
        font-size: 1.5rem;
    }
    
    .brand-logo h2 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .social-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Email Verification Preloader Styles */
.verification-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.preloader-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #764ba2;
    animation-duration: 1s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #f093fb;
    animation-duration: 0.8s;
}

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

.preloader-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.preloader-content p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    max-width: 250px;
    margin: 0 auto;
}

.verification-steps .step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.5;
    transform: translateX(-10px);
}

.verification-steps .step.active {
    opacity: 1;
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(0);
}

.verification-steps .step.completed {
    opacity: 0.8;
    background: rgba(76, 175, 80, 0.2);
    transform: translateX(0);
}

.verification-steps .step.completed .step-icon::after {
    content: "✓";
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    position: relative;
    font-size: 1.2rem;
    min-width: 24px;
}

.step-text {
    font-size: 0.9rem;
    color: #fff;
}

/* Verification Error Styles */
.verification-error {
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ffa8a8);
    border-radius: 12px;
    animation: slideInError 0.3s ease-out;
}

.error-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.error-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

/* Enhanced Results Section */
.results-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.results-section.show {
    opacity: 1;
    transform: translateY(0);
}

.result-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: slideInUp 0.6s ease-out;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.email-info h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    word-break: break-all;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.status-badge.status-valid,
.status-badge.status-Valid {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.status-badge.status-invalid {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: white;
}

.status-badge.status-risky,
.status-badge.status-Risky {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
}

.score-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.result-details {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
}

.detail-value {
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.detail-value.positive {
    background: #e8f5e8;
    color: #2e7d32;
}

.detail-value.negative {
    background: #ffebee;
    color: #c62828;
}

.detail-value.warning {
    background: #fff3e0;
    color: #ef6c00;
}

.verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.verification-actions .btn-primary,
.verification-actions .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.verification-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.verification-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.verification-actions .btn-secondary {
    background: #f8fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.verification-actions .btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

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

/* Responsive Design for Verification */
@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verification-steps {
        max-width: 200px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-actions {
        flex-direction: column;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
    }
    
    .score-value {
        font-size: 1.5rem;
    }
}


/* User Menu Dropdown Styles */
.user-menu {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.user-plan {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.2;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px 12px 0 0;
}

.user-info-detailed {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.user-details-full {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name-full {
    font-weight: 600;
    font-size: 1rem;
    color: #1a202c;
    line-height: 1.2;
}

.user-email {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.2;
}

.user-plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 0.25rem;
}

.dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0.5rem 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-link:hover {
    background: #f8fafc;
    color: #1f2937;
    transform: translateX(2px);
}

.dropdown-link.logout-link:hover {
    background: #fef2f2;
    color: #dc2626;
}

.dropdown-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile responsiveness for user menu */
@media (max-width: 768px) {
    .user-info {
        min-width: auto;
        padding: 0.5rem;
    }
    
    .user-details {
        display: none;
    }
    
    .user-dropdown {
        right: -1rem;
        min-width: 260px;
    }
    
    .dropdown-header {
        padding: 1rem;
    }
    
    .user-info-detailed {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Enhanced dropdown animations */
.nav-dropdown .dropdown-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.15s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.2s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.25s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.3s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.35s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(7) { transition-delay: 0.4s; }
