.hero-section {
    padding: 100px 0 50px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-white);
    opacity: 0.8;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-white);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.content-card {
    background-color: rgba(18, 17, 17, .4);
    border-radius: 1.25rem;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(1.25rem);
    position: relative;
}

.content-card:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    background: linear-gradient(-135deg, var(--ecosystem-gradient-a-color), var(--ecosystem-gradient-b-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.content-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-card h4 {
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.table {
    background: rgba(200, 200, 200, 0.9);
    color: #333;
    border-collapse: collapse;
    width: 100%;
}

.table th {
    background: linear-gradient(90deg, var(--button-gradient-a-color) 0%, var(--button-gradient-b-color) 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.table thead tr {
    background: linear-gradient(90deg, var(--button-gradient-a-color) 0%, var(--button-gradient-b-color) 100%);
}

.table thead th {
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.table thead th:last-child {
    border-right: none;
}

.table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(220, 220, 220, 0.9);
}

.table tr:nth-child(even) td {
    background: rgba(210, 210, 210, 0.9);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover td {
    background: rgba(230, 230, 230, 0.9);
}

.info-box {
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    background: transparent;
}

.info-box h4 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.info-box p {
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 10px;
}

.highlight-text {
    text-align: center;
    margin: 30px 0;
    padding: 0;
    background: transparent;
}

.highlight-text h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.highlight-text .gradient-text {
    background: linear-gradient(90deg, var(--button-gradient-a-color) 0%, var(--button-gradient-b-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-green);
    border: 2px solid var(--text-green);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .step-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.content-card .syne-400.gradient-text {
    background: linear-gradient(90deg, var(--button-gradient-a-color) 0%, var(--button-gradient-b-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--button-gradient-a-color) 0%, var(--button-gradient-b-color) 100%);
    border-image-slice: 1;
    display: inline-block;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .content-card {
        padding: 20px;
    }

    .step-box {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .table-responsive {
        font-size: 0.875rem;
    }

    .table th,
    .table td {
        padding: 10px 5px;
    }
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 4rem;
    }
}

#affiliate_plus_plan {
    scroll-margin-top: 5rem;
}