/* ============================================
   Premium Enterprise Styling for Facial Recognition Landing Page
   Append this to style.css
   ============================================ */

/* Hero Section Enhancements */
.hero-section-facial-recognition {
    position: relative;
    overflow: hidden;
}

.hero-section-facial-recognition::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(239,5,72,0.05)" d="M0,0 L1200,600 L1200,0 Z"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
}

.hero-badges {
    margin-top: 25px;
}

.badge-item {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(239, 5, 72, 0.2);
    border-color: #EF0548;
    transform: translateY(-2px);
}

.hero-trust-counters {
    margin-top: 30px;
}

.trust-counter-item {
    text-align: center;
}

.counter-number {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 13px;
    opacity: 0.8;
}

.hero-img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* Feature Overview */
.feature-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-card-mini {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card-mini:hover {
    box-shadow: 0 5px 20px rgba(239, 5, 72, 0.15);
    transform: translateY(-3px);
}

.benefit-card-mini .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.benefit-card-mini .title {
    font-size: 16px;
    margin-bottom: 8px;
}

.benefit-card-mini .description {
    font-size: 13px;
    line-height: 1.6;
}

/* Problem Cards */
.problem-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.problem-card:hover {
    box-shadow: 0 8px 30px rgba(239, 5, 72, 0.15);
    transform: translateY(-5px);
}

.problem-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.problem-card .card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
}

.timeline-item {
    position: relative;
}

.timeline-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #EF0548;
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EF0548 0%, #d0043f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(239, 5, 72, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(239, 5, 72, 0.4);
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.comparison-table thead {
    background: #04213F;
    color: #ffffff;
}

.comparison-table thead th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table thead th.feature-highlight {
    background: #EF0548;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody td {
    padding: 18px 15px;
    font-size: 14px;
}

.comparison-table tbody td.feature-highlight {
    background: rgba(239, 5, 72, 0.05);
    font-weight: 500;
}

.comparison-table .color-red {
    color: #EF0548;
}

.comparison-table .color-gray {
    color: #999;
}

/* Benefit List Items */
.benefit-list-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-list-item:hover {
    box-shadow: 0 5px 20px rgba(239, 5, 72, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 32px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Security Cards */
.security-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    box-shadow: 0 8px 30px rgba(4, 33, 63, 0.15);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.security-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.security-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Why Items */
.why-item {
    padding: 20px;
}

.why-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: #04213F;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    font-size: 20px;
    color: #EF0548;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 30px 25px;
}

.accordion-content p {
    margin: 0;
    line-height: 1.7;
}

/* Conversion CTA */
.conversion-cta {
    position: relative;
    overflow: hidden;
}

.conversion-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(239,5,72,0.05)" d="M0,600 L1200,0 L1200,600 Z"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

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

.cta-title {
    font-size: 42px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 26px;
    }
}

.cta-description {
    font-size: 16px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Utility Classes */
.border-radius {
    border-radius: 10px;
}

.color-gray {
    color: #999;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .feature-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
}

/* Hero Trust Strip */
.hero-trust-strip {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip-item {
    padding: 8px 0;
}

.trust-strip-item i {
    flex-shrink: 0;
}

/* Hero CTA Microcopy */
.hero-ctas-wrapper {
    margin-top: 20px;
}

.hero-cta-microcopy {
    font-size: 13px;
    line-height: 1.6;
}

.hero-cta-microcopy i {
    font-size: 14px;
}

/* Hero Image Glassmorphism */
.hero-image-wrapper {
    position: relative;
}

.glassmorphism-frame {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-image-placeholder {
    position: relative;
    overflow: hidden;
}

.hero-img {
    transition: transform 0.3s ease;
}

.hero-image-placeholder:hover .hero-img {
    transform: scale(1.02);
}

/* Hero Solves Line */
.hero-solves {
    font-weight: 500;
}

/* Benefits Checklist Columns */
.benefits-checklist-column {
    height: 100%;
}

.benefit-checklist-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-checklist-item:hover {
    box-shadow: 0 5px 20px rgba(239, 5, 72, 0.1);
    transform: translateX(5px);
}

.checklist-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.checklist-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Enterprise Note Box */
.enterprise-note-box {
    background: linear-gradient(135deg, rgba(239, 5, 72, 0.1) 0%, rgba(4, 33, 63, 0.05) 100%);
    border: 2px solid rgba(239, 5, 72, 0.2);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.enterprise-note-content {
    text-align: center;
}

.enterprise-icon {
    margin-bottom: 15px;
}

.enterprise-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.enterprise-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Security Section Dark Background */
.security-section .section-header .title {
    color: #ffffff;
}

.security-section .section-header .sub-title {
    color: #EF0548;
}

.security-section .section-header .description {
    color: #ffffff;
    opacity: 0.9;
}

.security-section .security-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.security-section .security-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(239, 5, 72, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 5, 72, 0.2);
}

.security-section .security-title {
    color: #ffffff;
}

.security-section .security-description {
    color: #ffffff;
    opacity: 0.85;
}

/* Security Note Box */
.security-note-box {
    margin-top: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.security-note-content {
    max-width: 900px;
    margin: 0 auto;
}

.security-note-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.security-note-description {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
}

/* Utility Classes */
.mr-8 {
    margin-right: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .hero-trust-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .trust-strip-item {
        width: 100%;
    }
    
    .enterprise-note-box {
        padding: 30px 20px;
    }
    
    .security-note-box {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .hero-badges {
        justify-content: center;
    }
    
    .hero-trust-strip {
        padding: 12px 0;
    }
    
    .hero-cta-microcopy {
        font-size: 12px;
        text-align: center;
    }
    
    .hero-cta-microcopy span {
        display: block;
        margin-bottom: 5px;
    }
    
    .benefit-checklist-item {
        padding: 15px;
    }
    
    .comparison-table-wrapper {
        padding: 15px;
        overflow-x: auto;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table thead th,
    .comparion-table tbody td {
        padding: 12px 8px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
    }
    
    .enterprise-note-box {
        padding: 25px 15px;
    }
    
    .enterprise-title {
        font-size: 20px;
    }
    
    .enterprise-description {
        font-size: 14px;
    }
}
