/* Email Finder specific styles */
.finder-search-container {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.finder-search-container .search-input {
    flex: 1;
    padding: 1.25rem;
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.finder-search-container .search-input:first-of-type {
    border-radius: 12px 0 0 12px;
    border-right: none;
}

.finder-search-container .search-input:last-of-type {
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.finder-search-container .at-symbol {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    background-color: white;
    font-size: 1.2rem;
    color: #718096;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
}

.finder-search-container .search-button {
    padding: 1.25rem 2rem;
    background: #1497ec;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0 12px 12px 0;
}

.finder-search-container .search-button:hover {
    background: #14cea1;
}

.finder_form_spinner {
    display: none;
    margin-top: 15px;
    text-align: center;
}

.finder_form_spinner span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(20, 151, 236, 0.3);
    border-radius: 50%;
    border-top-color: #1497ec;
    animation: spin 1s ease-in-out infinite;
}

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

.finder_results_area {
    background-color: white;
    border-radius: 12px;
    margin-top: 20px;
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .finder-search-container {
        flex-direction: column;
        max-width: 100%;
    }
    
    .finder-search-container .search-input:first-of-type {
        border-radius: 12px 12px 0 0;
        border-right: 2px solid #e2e8f0;
        border-bottom: none;
    }
    
    .finder-search-container .at-symbol {
        padding: 0.5rem;
        border: 2px solid #e2e8f0;
        border-top: none;
        border-bottom: none;
    }
    
    .finder-search-container .search-input:last-of-type {
        border-radius: 0;
        border: 2px solid #e2e8f0;
        border-top: none;
        border-bottom: none;
    }
    
    .finder-search-container .search-button {
        border-radius: 0 0 12px 12px;
    }
}

/* Advanced Email Intelligence Section */
.advanced-intelligence-section {
    background: #ffffff;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(156, 163, 175, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.intelligence-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intelligence-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.intelligence-title {
    font-size: 3rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intelligence-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f9fafb;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #d1d5db;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #48cae4, #0077b6);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #06ffa5, #00d2ff);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.central-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.1;
    z-index: 1;
}

@media (max-width: 768px) {
    .intelligence-title {
        font-size: 2rem;
    }
    
    .intelligence-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .central-visual {
        display: none;
    }
    
    .intelligence-container {
        padding: 20px;
    }
}

/* Email Finding Solution Section */
.email-finding-solution {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 3rem 2rem;
    color: white;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    border-radius: 16px 16px 0 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1rem;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    border: 1px solid #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.solution-feature-tag {
    background: linear-gradient(145deg, #1e293b, #334155);
    border: 1px solid #475569;
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.solution-feature-tag:hover {
    background: linear-gradient(145deg, #334155, #475569);
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.solution-check-icon {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.solution-check-icon::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
}

@media (max-width: 768px) {
    .email-finding-solution {
        padding: 2rem 1rem;
    }
    
    .solution-title {
        font-size: 2rem;
    }
    
    .solution-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
}

/* Modern FAQ Section - Blue Theme */
.faq-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 25%, #1e40af 50%, #1e3a8a 75%, #312e81 100%);
    padding: 4rem 2rem;
    color: white;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(147, 197, 253, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(219, 234, 254, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.faq-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    padding: 2rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    font-weight: 600;
    font-size: 13px;
    color: white;
    margin-bottom: 1rem;
}

.faq-badge svg {
    width: 16px;
    height: 16px;
}

.faq-title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    font-weight: 800;
    color: #1e293b;
}

.faq-subtitle {
    color: #475569;
    margin: 0 0 16px;
    font-size: clamp(14px, 2.5vw, 17px);
    line-height: 1.6;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    position: relative;
}

.faq-search input {
    flex: 1;
    padding: 14px 14px 14px 44px;
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.faq-search input::placeholder {
    color: #64748b;
}

.faq-search-icon {
    position: absolute;
    left: 14px;
    z-index: 1;
}

.faq-search-icon svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    color: #64748b;
}

.faq-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
    font-size: 13px;
    color: #64748b;
}

.faq-meta .split {
    height: 16px;
    width: 1px;
    background: rgba(59, 130, 246, 0.2);
}

.faq-highlights {
    padding: 1.5rem;
}

.faq-highlights h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.faq-highlights ul {
    margin: 0;
    padding: 0 0 0 18px;
    line-height: 1.8;
    color: #475569;
}

.faq-highlights li {
    margin-bottom: 0.5rem;
}

.faq-highlights strong {
    color: #1e293b;
}

.faq-cta {
    margin-top: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
}

.faq-cta-text {
    flex: 1;
}

.faq-cta strong {
    font-size: 16px;
    color: #1e293b;
    display: block;
    margin-bottom: 4px;
}

.faq-cta .muted {
    color: #475569;
    font-size: 14px;
}

.faq-cta-btn {
    appearance: none;
    border: none;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(8, 145, 178, .35);
    transition: transform 0.2s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-1px);
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    background: white;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px;
    cursor: pointer;
    background: rgba(248, 250, 252, 0.95);
    border: none;
    color: #1e293b;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background: rgba(240, 245, 251, 1);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 650;
    flex: 1;
    color: #1e293b;
}

.faq-pill {
    font-size: 12px;
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    font-weight: 500;
}

.faq-pill.verified {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #059669;
}

.faq-chevron {
    margin-left: auto;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
    opacity: 0;
}

.faq-answer-inner {
    padding: 0 18px 18px;
    color: #475569;
    line-height: 1.6;
    transform: translateY(-10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.faq-answer-inner p {
    margin: 0;
}

.faq-answer-inner strong {
    color: #1e293b;
}

.faq-answer-inner em {
    color: #64748b;
    font-style: italic;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 8px;
}

.faq-item.open .faq-answer-inner {
    transform: translateY(0);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-back-to-top {
    text-align: center;
    margin-top: 2rem;
}

.faq-helper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-helper:hover {
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.faq-helper svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 900px) {
    .faq-hero {
        grid-template-columns: 1fr;
    }
    
    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-section {
        padding: 2rem 1rem;
    }
}
