section {
    padding: 6rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-radial);
    pointer-events: none;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    max-width: 100vw;
    max-height: 100vw;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
}

.hero-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(248, 249, 250, 0.8);
}

.feature-blocks {
    background: var(--dark);
}

.feature-blocks h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-blocks > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
}

.table-responsive table {
    min-width: 600px;
    display: table;
    width: 100%;
}

.feature-table {
    margin-top: 3rem;
}

.timeline {
    background: var(--darker);
}

.timeline h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.timeline > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 2.5rem;
    width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--darker);
}

.timeline-item:hover {
    transform: translateX(10px);
    background: rgba(255, 51, 102, 0.05);
}

.cards-grid-3 {
    background: var(--dark);
}

.cards-grid-3 h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cards-grid-3 > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.cards-grid-3 .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cards-grid-3 .container > h2,
.cards-grid-3 .container > p {
    grid-column: 1 / -1;
}

.highlight-boxes {
    background: var(--darker);
}

.highlight-boxes h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.highlight-boxes > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.highlight-box img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    margin: 1rem auto;
    display: block;
}

.numbered-list {
    background: var(--dark);
}

.numbered-list h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.numbered-list > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.numbered-list article {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    counter-increment: article-counter;
    transition: all 0.4s ease;
}

.numbered-list {
    counter-reset: article-counter;
}

.numbered-list article::before {
    content: counter(article-counter);
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.numbered-list article:hover {
    background: rgba(255, 51, 102, 0.05);
    transform: translateX(10px);
}

.numbered-list article img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    margin: 1rem auto;
    display: block;
}

.text-block {
    background: var(--darker);
}

.text-block h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.text-block > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-table {
    margin: 3rem 0;
}

.table-responsive .comparison-table {
    margin: 0;
}

.text-block article {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.accordion {
    background: var(--dark);
}

.accordion h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-header {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    color: var(--light);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-header {
    background: rgba(255, 51, 102, 0.05);
    color: var(--secondary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-item.active .accordion-body {
    max-height: 1500px;
    padding: 0 2rem 2rem;
}

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-item img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    margin: 1rem auto;
    display: block;
}

@media (min-width: 768px) {
    .cards-grid-3 .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid-3 .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    * {
        max-width: 100%;
    }

    header .container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }
    
    .logo img {
        height: 35px;
    }

    nav {
        order: 4;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: rgba(10, 14, 39, 0.98);
        border-radius: 12px;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    header .cta-button {
        order: 2;
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-section {
        padding-top: 7rem;
        min-height: auto;
        overflow: hidden;
    }

    .hero-section::after {
        width: min(800px, 100vw);
        height: min(800px, 100vw);
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .card {
        padding: 1.75rem;
    }

    .highlight-box,
    .timeline-item,
    .numbered-list article,
    .text-block article {
        padding: 2rem;
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
    }

    .accordion-item.active .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.875rem;
    }

    footer nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.875rem;
    }
}