/* Section Base Styles */
:root {
    --section-padding-large: 8rem 0;
    --section-padding-medium: 6rem 0;
    --section-padding-small: 4rem 0;
    --container-padding: 0 2rem;
    --card-padding: 2rem;
    --feature-gap: 1.5rem;
}

/* Common Section Styles */
section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding-medium);
    background: rgba(10, 10, 15, 0.97);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.6;
}

/* AI Testing Section Specific Styles */
/* Commenting out to prevent conflicts with ai-testing.css */
/* .ai-testing-section {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: rgba(10, 10, 15, 0.97);
}

.ai-testing-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-text {
    max-width: 540px;
}

.ai-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-text p {
    font-size: 1rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    min-height: 80px;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 180, 216, 0.2);
}

.feature-card i {
    font-size: 1.125rem;
    color: #4facfe;
    padding: 0.5rem;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 6px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    flex: 1;
}

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

.feature-card p {
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.4;
    margin: 0;
}

.ai-visual {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 1200px) {
    .ai-testing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 720px;
    }

    .ai-text {
        text-align: center;
        margin: 0 auto;
    }

    .ai-features {
        max-width: 540px;
        margin: 0 auto;
    }

    .ai-visual {
        height: 320px;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ai-testing-section {
        padding: 3rem 0;
    }

    .ai-text h2 {
        font-size: 2rem;
    }

    .ai-features {
        gap: 0.75rem;
    }

    .feature-card {
        padding: 0.875rem 1rem;
        min-height: 70px;
    }

    .ai-visual {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .ai-testing-content {
        padding: 0 1rem;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        min-height: auto;
    }

    .feature-card i {
        margin-bottom: 0.5rem;
    }

    .ai-text h2 {
        font-size: 1.75rem;
    }

    .ai-visual {
        height: 240px;
    }
} */

/* Security Assessment Demo Section */
.demo-section {
    position: relative;
    padding: 8rem 0;
    background: rgba(10, 10, 15, 0.97);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

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

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

.demo-interface {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
}

.terminal-window {
    width: 100%;
    background: #0F172A;
    border-radius: 16px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal-content {
    color: #00ff00;
    font-size: 1.2rem;
}

.start-assessment {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, #00B4D8, #90E0EF);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    margin: 3rem 0;
    transition: all 0.3s ease;
}

.start-assessment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

.assessment-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    position: relative;
}

.assessment-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #00B4D8;
    transform: translateY(-50%);
    z-index: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem 2rem;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #00B4D8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
}

.step-text {
    color: #ffffff;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    position: relative;
    padding: 8rem 0;
    background: rgba(10, 10, 15, 0.97);
    min-height: 100vh;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.faq-category {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
}

.faq-category h3 {
    color: #00B4D8;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-item {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    padding-right: 2rem;
}

.faq-question i {
    color: #00B4D8;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

@media (max-1200px) {
    .ai-testing-content,
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        gap: 3rem;
    }

    .ai-text h2,
    .section-header h2 {
        font-size: 2.8rem;
    }

    .assessment-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .assessment-steps::before {
        display: none;
    }

    .assessment-steps .step {
        width: 100%;
        justify-content: center;
    }
}

@media (max-768px) {
    .ai-text h2,
    .section-header h2 {
        font-size: 2.2rem;
    }

    .ai-features {
        grid-template-columns: 1fr;
    }

    .faq-category {
        padding: 2rem;
    }

    .faq-category h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Package Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.table-wrapper {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.comparison-table th {
    background: rgba(0, 180, 216, 0.1);
    font-weight: 600;
    color: var(--accent-color);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
}

.comparison-table tr:hover {
    background: rgba(0, 180, 216, 0.05);
}

.comparison-table i.fas.fa-check {
    color: #00b894;
    font-size: 1.2rem;
}

.comparison-table i.fas.fa-times {
    color: #ff7675;
    font-size: 1.2rem;
}

/* Features Breakdown Section */
.webapp-features-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.webapp-features-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.webapp-features-section .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.webapp-features-section .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.webapp-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    min-height: 480px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.webapp-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.webapp-feature-card h3 i {
    font-size: 1.75rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.875rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.webapp-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.webapp-feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.webapp-feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.webapp-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.webapp-feature-content ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.webapp-feature-content ul li:last-child {
    border-bottom: none;
}

.webapp-feature-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.webapp-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.webapp-feature-card:hover h3 i {
    background: var(--accent-color);
    color: var(--text-primary);
}

@media (max-width: 1400px) {
    .webapp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .webapp-features-section .container {
        padding: 0 1.5rem;
    }
    
    .webapp-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .webapp-feature-card {
        min-height: auto;
        padding: 2rem;
    }

    .webapp-features-section .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .webapp-features-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

/* Additional Services Section */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.2), transparent);
}

.services-section .section-title {
    font-size: 3rem;
    background: linear-gradient(to right, #ffffff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.services-section .section-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-pricing-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.service-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.3);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-pricing-card:hover::before {
    transform: translateX(100%);
}

.service-pricing-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.service-pricing-card h3 i {
    font-size: 1.75rem;
    color: #00B4D8;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-pricing-card h3 i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-pricing-card:hover h3 i {
    background: rgba(0, 180, 216, 0.15);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.service-pricing-card:hover h3 i::after {
    opacity: 1;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    color: #94A3B8;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-list li i {
    color: #00B4D8;
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-pricing-card:hover .pricing-list li i {
    background: rgba(0, 180, 216, 0.15);
    transform: scale(1.1);
}

.pricing-list li:last-child {
    border-bottom: none;
}

@media (max-1200px) {
    .features-grid,
    .services-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-768px) {
    .features-grid,
    .services-pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .feature-card,
    .service-pricing-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .feature-card h3,
    .service-pricing-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card h3 i,
    .service-pricing-card h3 i {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
    }
}

/* Web App Testing Page Color Scheme */
:root {
    --webapp-primary: #6C63FF;
    --webapp-secondary: #4FACFE;
    --webapp-accent: #00F2FE;
    --webapp-dark: #1A1B4B;
    --webapp-gradient: linear-gradient(135deg, #6C63FF 0%, #4FACFE 50%, #00F2FE 100%);
    --webapp-glow: 0 0 20px rgba(108, 99, 255, 0.3);
}

/* Hero Section */
.webapp-hero {
    min-height: 75vh;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 100%);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem;
}

.hero-content {
    padding-right: 2.5rem;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.hero-features {
    display: grid;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    padding: 0.75rem;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
}

.feature-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.feature-text p {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
}

.hero-cta .btn-primary {
    background: var(--webapp-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.hero-cta .btn-outline {
    background: rgba(15, 23, 42, 0.6);
    color: #ffffff;
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.hero-cta .btn-outline:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 180, 216, 0.3);
}

.security-dashboard {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.dashboard-header h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
}

.status-indicator {
    font-size: 1rem;
    color: var(--accent-color);
    padding: 0.625rem 1.25rem;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 20px;
}

.metric-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.metric-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
    padding: 0.75rem;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
}

.metric-info h4 {
    font-size: 1rem;
    color: #94A3B8;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
}

/* Assessment Overview Section */
.assessment-overview {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
}

.assessment-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.assessment-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.assessment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.assessment-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 2.5rem;
}

.assessment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-box {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #94A3B8;
}

/* Responsive Adjustments */
@media (max-1200px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1100px;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .assessment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-768px) {
    .webapp-hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .assessment-stats {
        grid-template-columns: 1fr;
    }
    
    .assessment-text h2 {
        font-size: 2rem;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(79, 172, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0); }
}

/* Section Improvements */
section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 180, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

.security-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.security-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.security-feature-item:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-2px);
}

.security-feature-item i {
    font-size: 1.25rem;
    color: #00B4D8;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.security-feature-item:hover i {
    background: rgba(0, 180, 216, 0.2);
    transform: scale(1.1);
}

.security-feature-item span {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

@media (max-768px) {
    .security-features-list {
        grid-template-columns: 1fr;
    }
    
    .security-feature-item {
        padding: 0.875rem 1rem;
    }
    
    .security-feature-item i {
        font-size: 1.125rem;
        width: 2.25rem;
        height: 2.25rem;
    }
}

/* Adjust spacing between sections */
.features-section,
.services-section {
    padding: 6rem 0;
}

.features-section + .services-section {
    padding-top: 4rem;
}

/* Enhanced hover effects */
.feature-card:hover,
.service-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.3);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover h3 i,
.service-pricing-card:hover h3 i {
    background: rgba(0, 180, 216, 0.15);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

/* Consistent list styling */
.feature-content ul li,
.pricing-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.feature-content ul li:last-child,
.pricing-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Add gradient separator between sections */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.2), transparent);
}

.packages-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.packages-section .section-header {
    margin-bottom: 5rem;
}

.packages-section .section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #ffffff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* Ultimate Package Section */
.ultimate-package {
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ultimate-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.ultimate-package-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ultimate-package-info {
    padding-right: 2rem;
}

.ultimate-package-info h3 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.ultimate-package-info .price {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 1.5rem 0;
}

.ultimate-package-info .price-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.ultimate-features {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ultimate-features ul li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ultimate-features ul li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .pricing-container {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .ultimate-package-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ultimate-package-info {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .packages-section .section-header h2 {
        font-size: 2.75rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .ultimate-package {
        padding: 3rem 1.5rem;
        margin-top: 4rem;
    }

    .ultimate-package-info h3 {
        font-size: 2rem;
    }
} 