.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4rem 0;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    width: 100%;
    margin-bottom: 2.5rem;
}

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

.hero-description {
    color: #d1d5db;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: rgba(255, 72, 0, 0.2);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: rgba(255, 72, 0, 0.4);
    transition: all 0.2s ease;
}

.btn-secondary {
    background-color: rgb(10, 10, 10);
    border: 1px solid var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(30, 30, 30, 0.6);
}

.btn-icon {
    margin-right: 0.5rem;
}

.hero-image-container {
    width: 100%;
}

.hero-image {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
    background-color: var(--color-foreground);
    border: 1px solid var(--color-foreground);
    border-radius: 0.5rem;
}

.stats-section {
    padding: 3rem 1rem;
    border-top: 1px solid var(--color-border, #2d2d2d);
    border-bottom: 1px solid var(--color-border, #2d2d2d);
}

.stats-container {
    max-width: 1152px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Tablet */
@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small desktop */
@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large desktop */
@media (min-width: 1280px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: rgba(255, 72, 10, 0.03);
    border: 1px solid rgba(10, 10, 10, 0.4);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    color: var(--color-primary, #ff4800);
    margin-bottom: 0.75rem;
    width: 32px;
    height: 32px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: currentColor;
    fill: none;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: #d1d5db;
    margin-top: 0.25rem;
}

.comparison-section {
    padding: 4rem 1rem;
    background-color: var(--color-tertiary, #111111);
}

.comparison-container {
    max-width: 1152px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-primary, #ff4800);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-description {
    color: #d1d5db;
    text-align: center;
    margin-bottom: 2rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border, #2d2d2d);
}

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

.table-header-row {
    background-color: var(--color-secondary, #0a0a0a);
    border: 1px solid var(--color-border, #2d2d2d);
}

.table-header {
    padding: 0.75rem;
    text-align: left;
}

.table-row {
    border-bottom: 1px solid var(--color-border, #2d2d2d);
}

.table-cell {
    padding: 0.75rem;
}

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

.icon-check {
    color: #10b981;
}

.icon-warning {
    color: #f59e0b;
}

.icon-x {
    color: #ef4444;
}

.features-section {
    padding: 4rem 0;
}

.features-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    border: 1px solid var(--color-border, #2d2d2d);
    background-color: var(--color-tertiary, #111111);
    border-radius: 0.5rem;
    overflow: hidden;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-image-container {
    width: 100%;
    height: 12rem;
    background-color: rgba(10, 10, 10, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    height: 100%;
    object-fit: cover;
}

.feature-content {
    width: 100%;
    padding: 1.5rem;
}

.feature-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #d1d5db;
}

.security-section {
    padding: 4rem 1rem;
    background-color: var(--color-tertiary, #111111);
    border-top: 1px solid var(--color-border, #2d2d2d);
    border-bottom: 1px solid var(--color-border, #2d2d2d);
}

.security-container {
    max-width: 1152px;
    margin: 0 auto;
}

.security-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.security-image-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.security-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.security-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 4rem 1rem;
}

.cta-container {
    max-width: 1152px;
    margin: 0 auto;
    border: 1px solid var(--color-border, #2d2d2d);
    background-color: var(--color-tertiary, #111111);
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.cta-text {
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: rgba(255, 72, 0, 0.2);
    border: 1px solid var(--color-primary, #ff4800);
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: rgba(255, 72, 0, 0.4);
}

@media (min-width: 640px) {
    .security-title {
        font-size: 1.5rem;
    }

    .feature-image-container {
        height: 16rem;
    }

    .feature-content {
        padding: 2rem;
    }

    .feature-heading {
        font-size: 1.5rem;
    }

    .comparison-title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .cta-text {
        width: 60%;
    }

    .security-content {
        flex-direction: row;
    }

    .security-image-wrapper {
        width: 33.333%;
        margin-bottom: 0;
    }

    .security-text {
        width: 66.667%;
    }

    .feature-card {
        flex-direction: row;
    }

    .feature-card.reverse {
        flex-direction: row-reverse;
    }

    .feature-image-container {
        width: 40%;
    }

    .feature-content {
        width: 60%;
    }

    .stat-value {
        font-size: 1.875rem;
    }

    .hero-container {
        flex-direction: row;
    }

    .hero-content {
        width: 50%;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image-container {
        width: 50%;
        padding-left: 2.5rem;
    }
}