/* Analysis Page Specific Styles */
.analysis-section {
    padding: var(--spacing-8) 0;
}

.analysis-grid {
    margin-bottom: 60px;
}

.analysis-category {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.analysis-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.analysis-category-header {
    padding: 20px;
    background-color: var(--bg-element);
    display: flex;
    align-items: center;
    gap: 15px;
}

.analysis-category-header h2 {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.analysis-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.analysis-category-body {
    padding: 20px;
}

.analysis-category-body ul {
    margin-left: 20px;
}

.analysis-category-body li {
    margin-bottom: 15px;
}

.analysis-category-body li strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 4px;
}

/* Charts and Visualizations */
.analysis-charts {
    margin: 60px 0;
    padding: 30px;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.analysis-charts h2 {
    text-align: center;
    margin-bottom: 20px;
}

.chart-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.chart-item {
    background-color: var(--bg-subtle);
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.chart-item h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.chart {
    padding: 10px;
}

/* Case Studies Section */
.case-studies {
    margin-top: 60px;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 30px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    text-align: center;
}

.case-study-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.case-study-body {
    padding: 20px;
}

.case-study-body p {
    margin-bottom: 15px;
}

/* Setup Guide Styles */
.setup-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.setup-tab {
    padding: 12px 24px;
    background-color: var(--bg-element);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.setup-tab:hover {
    background-color: var(--border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.setup-tab.active {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.setup-content {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.setup-tab-content {
    display: none;
}

.setup-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Download section enhancements */
.download-options {
    margin-top: 50px;
}

.download-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.download-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.download-card-header p {
    margin: 0;
    opacity: 0.9;
}

/* Feature Highlights - New Component */
.feature-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    background-color: var(--bg-subtle);
    padding: 20px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section Dividers */
.section-divider {
    position: relative;
    height: 80px;
    margin: 40px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-divider.small {
    height: 60px;
    margin: 20px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.divider-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    border: 1px solid var(--border-light);
}

.section-divider.small .divider-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9em;
}

/* Features Hero Section */
.features-hero {
    position: relative;
    padding: 120px 0 200px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-element) 100%);
    overflow: hidden;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.features-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.features-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.features-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.features-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
}

.hackathon-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

/* Hero Explore Button (replaces the scroll indicator) */
.hero-explore-button {
    text-align: center;
    margin-top: 40px;
    animation: fade-in 1s ease;
}

.hero-explore-button p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.scroll-down-arrow {
    color: var(--primary);
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.scroll-down-arrow:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
    color: white;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating security icons */
.hero-floating-icon {
    position: absolute;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.3;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-floating-icon:nth-child(even) {
    animation-delay: 1s;
    animation-duration: 8s;
}

.hero-floating-icon:nth-child(3) {
    animation-delay: 2s;
    animation-duration: 7s;
}

.hero-floating-icon:nth-child(4) {
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Feature Card Links */
.feature-learn-more {
    margin-top: 15px;
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.feature-learn-more:hover i {
    transform: translateX(5px);
}

/* Enhanced Sticky Navigation */
.section-navigator {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 10px 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-light);
}

.section-navigator ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-navigator a {
    display: flex;
    align-items: center;
    color: var(--text-tertiary);
    padding: 8px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.section-navigator a span {
    margin-left: 10px;
    font-size: 14px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.section-navigator:hover a span {
    opacity: 1;
    width: 70px;
}

.section-navigator a.active {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.1);
    font-weight: 600;
}

.section-navigator a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 5px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.section-navigator a.active::before {
    width: 5px;
}

.section-navigator a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.section-navigator a.active i {
    transform: scale(1.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 99;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    width: 0%;
    transition: width 0.1s ease;
}

/* Feature Overview Section */
.feature-overview {
    padding: var(--spacing-6) 0;
    background-color: var(--bg-main);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Try It Yourself Section */
.try-it-yourself {
    padding: var(--spacing-8) 0;
    background-color: var(--bg-main);
}

.try-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.try-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-subtle);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.try-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.try-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.try-step h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.try-step p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.try-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--bg-element);
    color: var(--text-secondary);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.try-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Feature Comparison Table */
.feature-comparison {
    padding: var(--spacing-8) 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    position: relative;
    overflow: hidden;
}

.feature-comparison::before, .feature-comparison::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.feature-comparison::before {
    top: -50px;
    left: -50px;
}

.feature-comparison::after {
    bottom: -50px;
    right: -50px;
}

.feature-comparison .section-title {
    margin-bottom: 15px;
}

.feature-comparison p.text-center {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.comparison-table-container {
    max-width: 900px;
    margin: 40px auto;
    overflow-x: auto;
    padding: 0 var(--spacing-2);
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    table-layout: fixed;
    overflow: hidden;
}

.comparison-table th {
    padding: 20px 15px;
    background: #4f46e5;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow: visible;
    height: auto;
}

.comparison-table th:first-child {
    width: 35%;
    text-align: left;
    border-top-left-radius: var(--border-radius-md);
}

.comparison-table th:not(:first-child) {
    width: 21.67%;
}

.comparison-table th:last-child {
    border-top-right-radius: var(--border-radius-md);
}

.comparison-table td {
    padding: 16px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.2s ease;
    font-size: 0.95rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1e293b;
    padding-left: 20px;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.comparison-table tr:hover td {
    background-color: rgba(79, 70, 229, 0.05);
}

.comparison-table i.check {
    color: #10b981;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 3px rgba(16, 185, 129, 0.2));
}

.comparison-table i.cross {
    color: #ef4444;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 3px rgba(239, 68, 68, 0.2));
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-radius-md);
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-radius-md);
}

.comparison-summary {
    max-width: 800px;
    margin: 40px auto 0;
}

.comparison-summary p {
    font-size: 1.1rem;
    color: #334155;
    padding: 15px 20px;
    background-color: white;
    border-radius: var(--border-radius-md);
    display: inline-block;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--primary);
}

.comparison-summary strong {
    color: var(--primary);
}

/* Animation for sections */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Mobile Adjustments for Navigation */
.section-navigator.bottom-nav {
    bottom: 20px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    width: auto;
    flex-direction: row;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.95);
}

.section-navigator.bottom-nav ul {
    flex-direction: row;
    gap: 8px;
}

.section-navigator.bottom-nav a {
    padding: 10px;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.section-navigator.bottom-nav a.active {
    background-color: var(--primary);
    color: white;
}

.section-navigator.bottom-nav a span {
    display: none;
}

.section-navigator.bottom-nav a::before {
    display: none;
}

.section-navigator.bottom-nav a.active i {
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-hero h1 {
        font-size: 2.8rem;
    }
    
    .features-hero {
        padding: 100px 0 140px;
    }
    
    .section-navigator {
        left: 10px;
    }
    
    .highlight-item {
        align-items: center;
    }
    
    .comparison-table {
        table-layout: auto;
    }
}

@media (max-width: 768px) {
    .section-navigator:not(.bottom-nav) {
        display: none;
    }
    
    .features-hero {
        padding: 80px 0 160px;
    }
    
    .features-hero h1 {
        font-size: 2.2rem;
    }
    
    .features-hero p {
        font-size: 1.1rem;
    }
    
    .hackathon-badge-large {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-explore-button {
        margin-top: 30px;
    }
    
    .scroll-down-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .hero-floating-icon {
        display: none;
    }
    
    .section-divider {
        margin: 20px 0;
        height: 60px;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .setup-tabs {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .setup-tab {
        width: 100%;
        text-align: center;
    }
    
    .analysis-category-header {
        flex-direction: column;
        text-align: center;
    }

    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
    }
    
    .highlight-icon {
        margin-bottom: 15px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .comparison-table-container {
        padding: 0;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .try-steps {
        grid-template-columns: 1fr;
    }

    .try-step {
        padding: 24px 16px;
    }
}

@media (max-width: 576px) {
    .comparison-table th {
        font-size: 0.8rem;
        padding: 10px 5px;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .features-hero {
        padding: 70px 0 140px;
    }
    
    .features-hero h1 {
        font-size: 1.8rem;
    }
    
    .features-hero p {
        font-size: 1rem;
    }
    
    .hero-explore-button {
        margin-top: 25px;
    }
    
    .section-navigator.bottom-nav {
        bottom: 15px;
    }
    
    .section-navigator.bottom-nav a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Enhanced Download Page Styles */
.download-hero {
    padding: var(--spacing-6) 0;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-element) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.download-hero .container {
    position: relative;
    z-index: 1;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    margin-top: var(--spacing-6);
}

.download-card {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.download-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-4);
    text-align: center;
}

.download-card-header.accent {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.download-card-header h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.download-card-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.download-card-body {
    padding: var(--spacing-4);
    flex-grow: 1;
}

.download-details {
    margin-bottom: 24px;
}

.download-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.download-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-value {
    font-weight: 500;
}

.feature-list {
    margin-top: 24px;
}

.feature-list h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.download-card-footer {
    padding: var(--spacing-4);
    background-color: var(--bg-subtle);
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Platform Selection Styles */
.platform-selectors {
    margin: 24px 0;
}

.platform-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 10px 16px;
    background-color: var(--bg-element);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.platform-btn:hover {
    background-color: var(--border-medium);
}

.platform-btn.active {
    background-color: var(--primary);
    color: white;
}

.platform-instructions {
    display: none;
    margin: 24px 0;
    padding: 16px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-subtle);
}

.platform-instructions.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.code-snippet {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 16px;
    border-radius: var(--border-radius-md);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow-x: auto;
}

.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.instruction-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.instruction-note code {
    background-color: var(--bg-element);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Source Code Section */
.source-code {
    padding: var(--spacing-6) 0;
    background-color: var(--bg-main);
}

.source-card {
    background-color: var(--bg-subtle);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.source-card:hover {
    transform: translateY(-5px);
}

.source-header {
    padding: 24px;
    background: linear-gradient(135deg, #171515 0%, #333 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
}

.github-icon {
    font-size: 2.2rem;
}

.source-header h3 {
    margin: 0;
    font-size: 1.6rem;
}

.source-body {
    padding: 24px;
}

.source-body ul {
    margin-top: 16px;
    list-style: none;
    padding: 0;
}

.source-body li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.source-body li i {
    color: var(--primary);
}

.source-footer {
    padding: 20px;
    background-color: var(--bg-element);
    text-align: center;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #171515;
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
}

.github-btn:hover {
    background-color: #2b2b2b;
    transform: translateY(-2px);
}

/* Installation Overview */
.installation-overview {
    padding: var(--spacing-6) 0;
    background-color: var(--bg-subtle);
    position: relative;
    overflow: hidden;
}

.installation-overview::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
}

.step-card {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-4);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: var(--spacing-4);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.step-content code {
    background-color: var(--bg-element);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.view-detailed {
    text-align: center;
    margin-top: var(--spacing-6);
}

/* Add secondary button with info icon */
.info-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--bg-element);
    color: var(--text-secondary);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all 0.2s ease;
}

.info-btn:hover {
    background-color: var(--border-medium);
    transform: translateY(-2px);
}

/* Download page responsive styles */
@media (max-width: 992px) {
    .download-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .download-card-footer {
        flex-direction: column;
    }
    
    .platform-buttons {
        justify-content: center;
    }
    
    .installation-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-detail-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Enhanced Header Design */
.enhanced-header {
    background-color: #ffffff;
    padding: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.enhanced-header nav {
    display: flex;
    width: 100%;
    align-items: center;
}

.enhanced-header .logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.enhanced-header .logo img {
    height: 28px;
    width: auto;
    margin-right: 8px;
}

.enhanced-header .logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.enhanced-header .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.enhanced-header .nav-links li {
    display: flex;
}

.enhanced-header .nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
}

.enhanced-header .nav-links a i {
    color: var(--text-tertiary);
    font-size: 1rem;
}

.enhanced-header .nav-links a:hover,
.enhanced-header .nav-links a.active {
    color: var(--primary);
}

.enhanced-header .nav-links a.active {
    position: relative;
}

.enhanced-header .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.github-btn {
    margin-left: auto;
    background-color: #24292e;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.github-btn:hover {
    background-color: #000;
    color: white;
    transform: translateY(-1px);
}

.github-btn i {
    font-size: 1rem;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    margin-left: auto;
}

/* Override the responsive styles */
@media (max-width: 992px) {
    .enhanced-header .nav-links {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .enhanced-header .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 15px;
        z-index: 1001;
    }
    
    .enhanced-header .nav-links.active {
        display: flex;
    }
    
    .enhanced-header .nav-links a {
        width: 100%;
        justify-content: center;
    }
    
    .github-btn {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .github-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .github-btn span {
        display: none;
    }
    
    .enhanced-header .logo {
        margin-right: 20px;
    }
}

/* Enhanced Privacy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-element) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.privacy-hero .container {
    position: relative;
    z-index: 1;
}

.privacy-section {
    padding: 60px 0 80px;
    background-color: var(--bg-subtle);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.privacy-block {
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.privacy-block h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-secondary);
}

.privacy-block p {
    margin-bottom: 15px;
}

.privacy-block ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-block ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.privacy-block a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-light);
    transition: all 0.3s ease;
}

.privacy-block a:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-block h2 {
        font-size: 1.5rem;
    }
    
    .privacy-block h3 {
        font-size: 1.2rem;
    }
}

/* Redesigned Footer */
footer {
    background-color: #111827;
    color: #f9fafb;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23111827"/></svg>');
    background-size: cover;
    background-position: center;
    transform: translateY(-99%);
    z-index: -1;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

.hackathon-credit {
    font-size: 0.9rem;
    text-align: center;
    color: #9ca3af;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hackathon-credit a {
    color: var(--primary-light);
    text-decoration: none;
}

.hackathon-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Lightbox for Setup Images */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid white;
    border-radius: var(--border-radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-close i {
    font-size: 20px;
}

/* Enhanced Setup Page Styles */
.setup-hero {
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-element) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.setup-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.setup-hero .container {
    position: relative;
    z-index: 1;
}

.setup-navigation {
    padding: 40px 0;
    background-color: var(--bg-main);
}

.setup-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff7ed;
    border-left: 4px solid #fb923c;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
}

.setup-notice i {
    font-size: 24px;
    color: #fb923c;
}

.setup-notice p {
    margin: 0;
    color: #7c2d12;
    font-weight: 500;
}

.setup-intro {
    margin-bottom: 40px;
    text-align: center;
}

.setup-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.setup-steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.setup-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-subtle);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.setup-step::before {
    content: '';
    position: absolute;
    top: 110px;
    left: 40px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary-light);
    display: none;
}

.setup-step:last-child::before {
    display: none;
}

.setup-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-content h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-note {
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: #0c4a6e;
}

.step-note.warning {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #7f1d1d;
}

.step-note strong {
    font-weight: 600;
}

.step-img {
    margin: 10px 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.setup-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.step-action {
    margin-top: 10px;
}

code {
    background-color: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: var(--primary-dark);
}

.hackathon-info-section {
    padding: 60px 0;
    background-color: var(--bg-subtle);
}

.info-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.info-card h2 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.info-card .action-buttons {
    margin-top: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary);
    margin-top: 3px;
}

@media (min-width: 992px) {
    .setup-step::before {
        display: block;
    }
}

@media (max-width: 992px) {
    .setup-step {
        grid-template-columns: 60px 1fr;
    }
}

@media (max-width: 768px) {
    .setup-step {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .step-content {
        text-align: center;
    }
    
    .setup-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* Home Page Specific Styles */
.home-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-element) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.home-hero .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    position: relative;
    z-index: 2;
}

.home-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.home-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
}

.home-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.home-hero .hero-image {
    flex: 1;
    position: relative;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.security-particles .particle {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: 50%;
    z-index: 1;
    animation: particleFloat 20s infinite linear;
    opacity: 0.6;
}

.security-particles .particle:nth-child(1) {
    top: 20%;
    right: 15%;
    animation-duration: 15s;
}

.security-particles .particle:nth-child(2) {
    top: 50%;
    right: 25%;
    width: 60px;
    height: 60px;
    animation-duration: 25s;
    animation-delay: 2s;
}

.security-particles .particle:nth-child(3) {
    bottom: 30%;
    right: 10%;
    width: 30px;
    height: 30px;
    animation-duration: 20s;
    animation-delay: 4s;
}

.security-particles .particle:nth-child(4) {
    top: 70%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.security-particles .particle:nth-child(5) {
    top: 30%;
    left: 5%;
    width: 50px;
    height: 50px;
    animation-duration: 22s;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Browser Mockup */
.browser-mockup {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background-color: white;
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.browser-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.browser-header {
    background-color: #f1f3f5;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.browser-actions {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.browser-actions span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-actions span:nth-child(1) {
    background-color: #ff5f57;
}

.browser-actions span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-actions span:nth-child(3) {
    background-color: #28c941;
}

.browser-address-bar {
    flex: 1;
    background-color: white;
    padding: 8px 12px;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-address-bar i {
    color: #10b981;
}

.browser-extension-icon {
    margin-left: 15px;
}

.browser-extension-icon img {
    height: 24px;
    width: auto;
}

.browser-content {
    padding: 0;
    position: relative;
}

.browser-content .screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.security-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.security-indicator.safe {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.security-indicator.warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.security-indicator.danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Animated button */
.animated-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    padding-right: 60px;
}

.button-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.animated-button:hover .button-icon {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateX(3px);
}

/* Project Info Section */
.project-info {
    padding: var(--spacing-8) 0;
    background-color: var(--bg-subtle);
    position: relative;
    overflow: hidden;
}

.project-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%234f46e5" opacity="0.05"/></svg>') repeat;
    z-index: 0;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
    position: relative;
    z-index: 1;
}

.info-column {
    background-color: var(--bg-main);
    padding: var(--spacing-5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.info-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--spacing-4);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.info-column h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-3);
    color: var(--primary-dark);
}

.info-column p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.tech-stack {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-4);
}

.tech-stack li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.tech-stack li i {
    color: var(--primary);
}

.github-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #171515;
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.github-link:hover {
    background-color: #000;
    color: white;
    transform: translateY(-3px);
}

/* Key Features Section */
.key-features {
    padding: var(--spacing-8) 0;
    background-color: var(--bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-6);
    margin-bottom: var(--spacing-6);
}

.features-cta {
    text-align: center;
    margin-top: var(--spacing-5);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -20px auto var(--spacing-5);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive Styles for Home Page */
@media (max-width: 992px) {
    .home-hero h1 {
        font-size: 2.8rem;
    }
    
    .home-hero .container {
        flex-direction: column;
    }
    
    .home-hero .hero-content {
        text-align: center;
        margin-bottom: var(--spacing-5);
    }
    
    .home-hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .browser-mockup {
        transform: perspective(1000px) rotateY(0) rotateX(0);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .home-hero h1 {
        font-size: 2.2rem;
    }
    
    .security-particles .particle {
        display: none;
    }
    
    .workflow {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .workflow-step {
        text-align: center;
    }
    
    .step-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-hero h1 {
        font-size: 1.8rem;
    }
    
    .browser-header {
        padding: 8px 10px;
    }
    
    .browser-address-bar {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .animated-button {
        width: 100%;
        justify-content: center;
    }
}

/* Modified Home Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-element) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 550px;
    border-radius: var(--border-radius-lg);
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.1));
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Centered How It Works Section */
.workflow {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: var(--spacing-5);
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    text-align: center;
    position: relative;
    padding: 20px;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: var(--primary-light);
    z-index: 1;
}

.workflow-step:last-child::after {
    display: none;
}

.workflow-step .step-icon {
    position: absolute;
    right: -20px;
    top: 21px;
    width: 40px;
    height: 40px;
    background-color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.workflow-step p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .workflow {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .workflow-step::after,
    .workflow-step .step-icon {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
    }
}

/* Centered How It Works Section - Updated */
.how-it-works {
    padding: var(--spacing-8) 0;
    background-color: var(--bg-main);
    text-align: center;
}

.workflow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.workflow-step {
    flex: 1;
    position: relative;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-light);
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workflow-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.workflow-step h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.workflow-step p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.step-icon-right {
    position: absolute;
    top: 30px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    border: 1px solid var(--border-light);
}

.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -30px;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
    z-index: 1;
}

/* Responsive adjustments for workflow */
@media (max-width: 992px) {
    .workflow {
        flex-direction: column;
        max-width: 450px;
    }

    .workflow-step:not(:last-child)::after {
        display: none;
    }

    .step-icon-right {
        right: 50%;
        bottom: -15px;
        top: auto;
        transform: translateX(50%);
    }
    
    .workflow-step:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .workflow-step {
        padding: 20px 15px;
    }
    
    .workflow-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .workflow-step {
        padding: 15px;
    }
}

/* Fixed How It Works Section Alignment */
.how-it-works {
    padding: var(--spacing-8) 0;
    background-color: var(--bg-main);
    text-align: center;
}

.workflow {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.workflow-step {
    flex: 1;
    position: relative;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-light);
    max-width: 280px;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workflow-step .step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.workflow-step h3 {
    font-size: 1.4rem;
    margin: 0 0 15px;
    color: var(--text-primary);
}

.workflow-step p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive adjustments for workflow */
@media (max-width: 992px) {
    .workflow {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-step {
        width: 100%;
        max-width: 400px;
    }
    
    .workflow-step:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .workflow-step {
        padding: 25px 15px;
    }
    
    .workflow-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}
