/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "area-normal", sans-serif;
    background-color: #ffffff;
    color: var(--font-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

@keyframes tier-badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 176, 253, 0.45);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(25, 176, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(25, 176, 253, 0);
    }
}

/* end of global */

@media(min-width: 1366px) {
    .credential-container {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 35fr 65fr;
        grid-gap: 40px;
        align-items: stretch;
    }

    .credential-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        grid-gap: 20px;
    }

    .credential-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px 15px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .credential-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .credential-card img {
        height: 30px;
    }

    .credential-card h3 {
        margin: 12px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .credential-card p {
        margin: 8px 0 0 0;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin: 10px 0;
    }

    .credential-item img {
        height: 30px;
        flex-shrink: 0;
    }

    .credential-item h3 {
        margin: 0;
        font-family: "area-normal", sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        color: var(--font-color);
    }

    .credential-item p {
        margin: 4px 0 0 0;
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-photo {
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    .credential-photo img {
        width: 100%;
        height: 100%;
        min-height: 160px;
        object-fit: cover;
        object-position: 50% 20%;
        transition: transform 0.3s ease;
    }

    .credential-photo:hover img {
        transform: scale(1.03);
    }

    .credential-photo-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 15px 15px 15px;
        background: linear-gradient(180deg, rgba(1, 13, 23, 0) 0%, rgba(1, 13, 23, 0.85) 100%);
    }

    .credential-photo-caption h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .credential-photo-caption p {
        margin: 4px 0 15px 0;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        line-height: 1.5;
        color: var(--light-color);
    }

    .testimonial-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 35px 40px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .testimonial-tag {
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--secondary-color);
        background: var(--accent-color);
    }

    .testimonial-headline {
        margin: 20px 0 0 0;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.4;
        color: var(--secondary-color);
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
        margin: 15px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 30%;
    }

    .testimonial-text {
        margin: 15px 0 0 0;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
    }

    .testimonial-author {
        margin: 15px 0 0 0;
        font-size: 15px;
        font-weight: 700;
        color: var(--light-color);
    }

    .testimonial-stats {
        width: 100%;
        margin: 20px 0 0 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .testimonial-stat {
        padding: 15px 12px;
        border-radius: 5px;
        text-align: center;
        background: rgba(25, 176, 253, 0.12);
    }

    .testimonial-stat h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 900;
        color: var(--accent-color);
    }

    .testimonial-stat h4 i {
        margin: 0 5px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.6);
    }

    .testimonial-stat p {
        margin: 8px 0 0 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--secondary-color);
    }

    .audience-heading {
        margin: 75px 0 50px 0;
    }

    .audience-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 25px;
        align-items: stretch;
    }

    .audience-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 35px 20px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .audience-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .audience-card i {
        font-size: 35px;
        color: var(--accent-color);
        transition: transform 0.2s ease;
    }

    .audience-card:hover i {
        transform: scale(1.15);
    }

    .audience-card h3 {
        margin: 15px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .audience-card p {
        margin: 10px 0 0 0;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .audience-banner {
        grid-column: 1 / -1;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 45px 30px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .audience-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .audience-banner h3 {
        margin: 0;
        font-size: 25px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .audience-banner h3 span {
        color: var(--accent-color);
    }

    .audience-banner p {
        margin: 10px 0 0 0;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
    }

    .audience-banner a {
        display: inline-block;
        margin: 25px 0 0 0;
        padding: 15px 30px;
        border-radius: 2px;
        border: 2px solid var(--accent-color);
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
        transition: all 0.2s ease;
    }

    .audience-banner a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .tier-container {
        width: 100%;
        margin: 75px auto 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 40px;
        align-items: stretch;
    }

    .tier-card {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 50px 35px 35px 35px;
        border-radius: 10px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tier-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-deep);
        transition: height 0.3s ease;
    }

    .tier-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(1, 13, 23, 0.15);
    }

    .tier-card:hover::before {
        height: 8px;
    }

    .tier-featured {
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        transform: scale(1.04);
        z-index: 2;
    }

    .tier-featured::before {
        background: var(--gradient-blue);
    }

    .tier-featured:hover {
        transform: scale(1.04) translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 123, 205, 0.35);
    }

    .tier-badge {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
        background: var(--off-color);
        border: 1px solid var(--light-color);
    }

    .tier-featured .tier-badge {
        color: var(--secondary-color);
        background: var(--accent-color);
        border: 1px solid var(--accent-color);
    }

    .tier-elite .tier-badge {
        color: var(--secondary-color);
        background: var(--font-color);
        border: 1px solid var(--font-color);
        animation: tier-badge-pulse 2.5s infinite;
    }

    .tier-number {
        margin: 30px 0 0 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-light);
    }

    .tier-featured .tier-number {
        color: var(--light-color);
    }

    .tier-name {
        margin: 5px 0 0 0;
        font-size: 28px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-color);
    }

    .tier-featured .tier-name {
        color: var(--secondary-color);
    }

    .tier-tagline {
        margin: 10px 0 0 0;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        line-height: 1.5;
        color: var(--font-light);
    }

    .tier-featured .tier-tagline {
        color: var(--light-color);
    }

    .tier-image {
        width: 100%;
        height: 190px;
        margin: 20px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 35%;
        transition: transform 0.3s ease;
    }

    .tier-card:hover .tier-image {
        transform: scale(1.02);
    }

    .tier-price {
        margin: 25px 0 0 0;
        font-size: 55px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
        color: var(--primary-color);
    }

    .tier-featured .tier-price {
        color: var(--accent-color);
    }

    .tier-price span {
        font-size: 17px;
        font-weight: 700;
        color: var(--font-light);
    }

    .tier-featured .tier-price span {
        color: var(--light-color);
    }

    .tier-meta {
        margin: 15px 0 0 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.6;
        color: var(--primary-color);
    }

    .tier-featured .tier-meta {
        color: var(--accent-color);
    }

    .tier-description {
        margin: 20px 0 0 0;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-featured .tier-description {
        color: rgba(255, 255, 255, 0.85);
    }

    .tier-checklist {
        margin: 25px 0 0 0;
        padding: 25px 0 0 0;
        border-top: 1px solid rgba(1, 13, 23, 0.1);
        list-style: none;
    }

    .tier-featured .tier-checklist {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tier-checklist li {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 12px 0;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        color: var(--font-color);
    }

    .tier-featured .tier-checklist li {
        color: var(--secondary-color);
    }

    .tier-checklist i {
        margin: 4px 0 0 0;
        font-size: 14px;
        color: var(--accent-color);
        transition: transform 0.2s ease;
    }

    .tier-card:hover .tier-checklist i {
        transform: scale(1.2);
    }

    .tier-bonus {
        margin: auto 0 0 0;
        padding: 12px 15px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 800;
        text-align: center;
        color: var(--primary-color);
        background: var(--off-color);
    }

    .tier-featured .tier-bonus {
        color: var(--accent-color);
        background: rgba(25, 176, 253, 0.12);
    }

    .tier-bonus i {
        margin: 0 5px 0 0;
    }

    .tier-button {
        display: block;
        margin: 20px 0 0 0;
        padding: 15px 30px;
        border-radius: 2px;
        border: 2px solid var(--primary-color);
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--primary-color);
        background-color: transparent;
        transition: all 0.2s ease;
    }

    .tier-button:hover {
        color: var(--secondary-color);
        background-color: var(--primary-color);
    }

    .tier-featured .tier-button {
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
    }

    .tier-featured .tier-button:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .tier-footnote {
        margin: 50px auto 0 auto;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-footnote a {
        color: var(--primary-color);
        font-weight: 800;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .credential-container {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 35fr 65fr;
        grid-gap: 25px;
        align-items: stretch;
    }

    .credential-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        grid-gap: 15px;
    }

    .credential-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 12px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .credential-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .credential-card img {
        height: 28px;
    }

    .credential-card h3 {
        margin: 10px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .credential-card p {
        margin: 8px 0 0 0;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin: 8px 0;
    }

    .credential-item img {
        height: 26px;
        flex-shrink: 0;
    }

    .credential-item h3 {
        margin: 0;
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-align: left;
        color: var(--font-color);
    }

    .credential-item p {
        margin: 4px 0 0 0;
        font-size: 12px;
        font-weight: 500;
        text-align: left;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-photo {
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    .credential-photo img {
        width: 100%;
        height: 100%;
        min-height: 140px;
        object-fit: cover;
        object-position: 50% 20%;
        transition: transform 0.3s ease;
    }

    .credential-photo:hover img {
        transform: scale(1.03);
    }

    .credential-photo-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 15px 15px 15px;
        background: linear-gradient(180deg, rgba(1, 13, 23, 0) 0%, rgba(1, 13, 23, 0.85) 100%);
    }

    .credential-photo-caption h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .credential-photo-caption p {
        margin: 4px 0 15px 0;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        line-height: 1.5;
        color: var(--light-color);
    }

    .testimonial-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 28px 30px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .testimonial-tag {
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--secondary-color);
        background: var(--accent-color);
    }

    .testimonial-headline {
        margin: 15px 0 0 0;
        font-size: 20px;
        font-weight: 900;
        line-height: 1.4;
        color: var(--secondary-color);
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
        margin: 15px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 30%;
    }

    .testimonial-text {
        margin: 15px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
    }

    .testimonial-author {
        margin: 15px 0 0 0;
        font-size: 14px;
        font-weight: 700;
        color: var(--light-color);
    }

    .testimonial-stats {
        width: 100%;
        margin: 20px 0 0 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
    }

    .testimonial-stat {
        padding: 14px 10px;
        border-radius: 5px;
        text-align: center;
        background: rgba(25, 176, 253, 0.12);
    }

    .testimonial-stat h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        color: var(--accent-color);
    }

    .testimonial-stat h4 i {
        margin: 0 4px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
    }

    .testimonial-stat p {
        margin: 8px 0 0 0;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--secondary-color);
    }

    .audience-heading {
        margin: 75px 0 50px 0;
    }

    .audience-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 15px;
        align-items: stretch;
    }

    .audience-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 25px 12px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .audience-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .audience-card i {
        font-size: 30px;
        color: var(--accent-color);
        transition: transform 0.2s ease;
    }

    .audience-card:hover i {
        transform: scale(1.15);
    }

    .audience-card h3 {
        margin: 12px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .audience-card p {
        margin: 8px 0 0 0;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .audience-banner {
        grid-column: 1 / -1;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 25px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .audience-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .audience-banner h3 {
        margin: 0;
        font-size: 22px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .audience-banner h3 span {
        color: var(--accent-color);
    }

    .audience-banner p {
        margin: 10px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
    }

    .audience-banner a {
        display: inline-block;
        margin: 25px 0 0 0;
        padding: 15px 30px;
        border-radius: 2px;
        border: 2px solid var(--accent-color);
        font-size: 16px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
        transition: all 0.2s ease;
    }

    .audience-banner a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .tier-container {
        width: 100%;
        margin: 75px auto 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
        align-items: stretch;
    }

    .tier-card {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 50px 25px 25px 25px;
        border-radius: 10px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tier-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-deep);
        transition: height 0.3s ease;
    }

    .tier-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(1, 13, 23, 0.15);
    }

    .tier-card:hover::before {
        height: 8px;
    }

    .tier-featured {
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        transform: scale(1.03);
        z-index: 2;
    }

    .tier-featured::before {
        background: var(--gradient-blue);
    }

    .tier-featured:hover {
        transform: scale(1.03) translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 123, 205, 0.35);
    }

    .tier-badge {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
        background: var(--off-color);
        border: 1px solid var(--light-color);
    }

    .tier-featured .tier-badge {
        color: var(--secondary-color);
        background: var(--accent-color);
        border: 1px solid var(--accent-color);
    }

    .tier-elite .tier-badge {
        color: var(--secondary-color);
        background: var(--font-color);
        border: 1px solid var(--font-color);
        animation: tier-badge-pulse 2.5s infinite;
    }

    .tier-number {
        margin: 30px 0 0 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-light);
    }

    .tier-featured .tier-number {
        color: var(--light-color);
    }

    .tier-name {
        margin: 5px 0 0 0;
        font-size: 24px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-color);
    }

    .tier-featured .tier-name {
        color: var(--secondary-color);
    }

    .tier-tagline {
        margin: 10px 0 0 0;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        line-height: 1.5;
        color: var(--font-light);
    }

    .tier-featured .tier-tagline {
        color: var(--light-color);
    }

    .tier-image {
        width: 100%;
        height: 160px;
        margin: 20px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 35%;
        transition: transform 0.3s ease;
    }

    .tier-card:hover .tier-image {
        transform: scale(1.02);
    }

    .tier-price {
        margin: 25px 0 0 0;
        font-size: 45px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
        color: var(--primary-color);
    }

    .tier-featured .tier-price {
        color: var(--accent-color);
    }

    .tier-price span {
        font-size: 16px;
        font-weight: 700;
        color: var(--font-light);
    }

    .tier-featured .tier-price span {
        color: var(--light-color);
    }

    .tier-meta {
        margin: 15px 0 0 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.6;
        color: var(--primary-color);
    }

    .tier-featured .tier-meta {
        color: var(--accent-color);
    }

    .tier-description {
        margin: 20px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-featured .tier-description {
        color: rgba(255, 255, 255, 0.85);
    }

    .tier-checklist {
        margin: 25px 0 0 0;
        padding: 25px 0 0 0;
        border-top: 1px solid rgba(1, 13, 23, 0.1);
        list-style: none;
    }

    .tier-featured .tier-checklist {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tier-checklist li {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 12px 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.6;
        color: var(--font-color);
    }

    .tier-featured .tier-checklist li {
        color: var(--secondary-color);
    }

    .tier-checklist i {
        margin: 4px 0 0 0;
        font-size: 13px;
        color: var(--accent-color);
        transition: transform 0.2s ease;
    }

    .tier-card:hover .tier-checklist i {
        transform: scale(1.2);
    }

    .tier-bonus {
        margin: auto 0 0 0;
        padding: 12px 15px;
        border-radius: 5px;
        font-size: 13px;
        font-weight: 800;
        text-align: center;
        color: var(--primary-color);
        background: var(--off-color);
    }

    .tier-featured .tier-bonus {
        color: var(--accent-color);
        background: rgba(25, 176, 253, 0.12);
    }

    .tier-bonus i {
        margin: 0 5px 0 0;
    }

    .tier-button {
        display: block;
        margin: 20px 0 0 0;
        padding: 15px 25px;
        border-radius: 2px;
        border: 2px solid var(--primary-color);
        font-size: 16px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--primary-color);
        background-color: transparent;
        transition: all 0.2s ease;
    }

    .tier-button:hover {
        color: var(--secondary-color);
        background-color: var(--primary-color);
    }

    .tier-featured .tier-button {
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
    }

    .tier-featured .tier-button:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .tier-footnote {
        margin: 50px auto 0 auto;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-footnote a {
        color: var(--primary-color);
        font-weight: 800;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .credential-container {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        align-items: stretch;
    }

    .credential-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        grid-gap: 25px;
    }

    .credential-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 35px 25px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .credential-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .credential-card img {
        height: 35px;
    }

    .credential-card h3 {
        margin: 15px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .credential-card p {
        margin: 10px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin: 10px 0;
    }

    .credential-item img {
        height: 30px;
        flex-shrink: 0;
    }

    .credential-item h3 {
        margin: 0;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 700;
        text-align: left;
        color: var(--font-color);
    }

    .credential-item p {
        margin: 4px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-photo {
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    .credential-photo img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        object-position: 50% 20%;
        transition: transform 0.3s ease;
    }

    .credential-photo:hover img {
        transform: scale(1.03);
    }

    .credential-photo-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 15px 15px 15px;
        background: linear-gradient(180deg, rgba(1, 13, 23, 0) 0%, rgba(1, 13, 23, 0.85) 100%);
    }

    .credential-photo-caption h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .credential-photo-caption p {
        margin: 4px 0 15px 0;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        line-height: 1.5;
        color: var(--light-color);
    }

    .testimonial-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 45px 35px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .testimonial-tag {
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--secondary-color);
        background: var(--accent-color);
    }

    .testimonial-headline {
        margin: 20px 0 0 0;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.4;
        color: var(--secondary-color);
    }

    .testimonial-image {
        width: 180px;
        height: 180px;
        margin: 20px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 30%;
    }

    .testimonial-text {
        margin: 20px 0 0 0;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
    }

    .testimonial-author {
        margin: 20px 0 0 0;
        font-size: 15px;
        font-weight: 700;
        color: var(--light-color);
    }

    .testimonial-stats {
        width: 100%;
        margin: 25px 0 0 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .testimonial-stat {
        padding: 20px 15px;
        border-radius: 5px;
        text-align: center;
        background: rgba(25, 176, 253, 0.12);
    }

    .testimonial-stat h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 900;
        color: var(--accent-color);
    }

    .testimonial-stat h4 i {
        margin: 0 5px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    .testimonial-stat p {
        margin: 8px 0 0 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--secondary-color);
    }

    .audience-heading {
        margin: 75px 0 50px 0;
    }

    .audience-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
        align-items: stretch;
    }

    .audience-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 20px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .audience-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .audience-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .audience-card i {
        font-size: 35px;
        color: var(--accent-color);
    }

    .audience-card h3 {
        margin: 15px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .audience-card p {
        margin: 10px 0 0 0;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .audience-banner {
        grid-column: 1 / -1;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 45px 30px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .audience-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .audience-banner h3 {
        margin: 0;
        font-size: 23px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .audience-banner h3 span {
        color: var(--accent-color);
    }

    .audience-banner p {
        margin: 10px 0 0 0;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
    }

    .audience-banner a {
        display: inline-block;
        margin: 25px 0 0 0;
        padding: 15px 30px;
        border-radius: 2px;
        border: 2px solid var(--accent-color);
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
        transition: all 0.2s ease;
    }

    .audience-banner a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .tier-container {
        width: 100%;
        margin: 50px auto 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 50px;
        align-items: stretch;
    }

    .tier-card {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 50px 35px 35px 35px;
        border-radius: 10px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tier-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-deep);
    }

    .tier-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(1, 13, 23, 0.12);
    }

    .tier-featured {
        order: -1;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
    }

    .tier-featured::before {
        background: var(--gradient-blue);
    }

    .tier-badge {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
        background: var(--off-color);
        border: 1px solid var(--light-color);
    }

    .tier-featured .tier-badge {
        color: var(--secondary-color);
        background: var(--accent-color);
        border: 1px solid var(--accent-color);
    }

    .tier-elite .tier-badge {
        color: var(--secondary-color);
        background: var(--font-color);
        border: 1px solid var(--font-color);
        animation: tier-badge-pulse 2.5s infinite;
    }

    .tier-number {
        margin: 30px 0 0 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-light);
    }

    .tier-featured .tier-number {
        color: var(--light-color);
    }

    .tier-name {
        margin: 5px 0 0 0;
        font-size: 26px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-color);
    }

    .tier-featured .tier-name {
        color: var(--secondary-color);
    }

    .tier-tagline {
        margin: 10px 0 0 0;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        line-height: 1.5;
        color: var(--font-light);
    }

    .tier-featured .tier-tagline {
        color: var(--light-color);
    }

    .tier-image {
        width: 100%;
        height: 190px;
        margin: 20px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 35%;
        transition: transform 0.3s ease;
    }

    .tier-card:hover .tier-image {
        transform: scale(1.02);
    }

    .tier-price {
        margin: 25px 0 0 0;
        font-size: 50px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
        color: var(--primary-color);
    }

    .tier-featured .tier-price {
        color: var(--accent-color);
    }

    .tier-price span {
        font-size: 17px;
        font-weight: 700;
        color: var(--font-light);
    }

    .tier-featured .tier-price span {
        color: var(--light-color);
    }

    .tier-meta {
        margin: 15px 0 0 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.6;
        color: var(--primary-color);
    }

    .tier-featured .tier-meta {
        color: var(--accent-color);
    }

    .tier-description {
        margin: 20px 0 0 0;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-featured .tier-description {
        color: rgba(255, 255, 255, 0.85);
    }

    .tier-checklist {
        margin: 25px 0 0 0;
        padding: 25px 0 0 0;
        border-top: 1px solid rgba(1, 13, 23, 0.1);
        list-style: none;
    }

    .tier-featured .tier-checklist {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tier-checklist li {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 12px 0;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        color: var(--font-color);
    }

    .tier-featured .tier-checklist li {
        color: var(--secondary-color);
    }

    .tier-checklist i {
        margin: 4px 0 0 0;
        font-size: 14px;
        color: var(--accent-color);
    }

    .tier-bonus {
        margin: auto 0 0 0;
        padding: 12px 15px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 800;
        text-align: center;
        color: var(--primary-color);
        background: var(--off-color);
    }

    .tier-featured .tier-bonus {
        color: var(--accent-color);
        background: rgba(25, 176, 253, 0.12);
    }

    .tier-bonus i {
        margin: 0 5px 0 0;
    }

    .tier-button {
        display: block;
        margin: 20px 0 0 0;
        padding: 15px 30px;
        border-radius: 2px;
        border: 2px solid var(--primary-color);
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--primary-color);
        background-color: transparent;
        transition: all 0.2s ease;
    }

    .tier-button:hover {
        color: var(--secondary-color);
        background-color: var(--primary-color);
    }

    .tier-featured .tier-button {
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
    }

    .tier-featured .tier-button:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .tier-footnote {
        margin: 50px auto 0 auto;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-footnote a {
        color: var(--primary-color);
        font-weight: 800;
    }
}

@media(max-width: 769px) {
    .credential-container {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 25px;
        align-items: stretch;
    }

    .credential-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        grid-gap: 15px;
    }

    .credential-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px 15px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .credential-card img {
        height: 30px;
    }

    .credential-card h3 {
        margin: 12px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .credential-card p {
        margin: 8px 0 0 0;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin: 10px 0;
    }

    .credential-item img {
        height: 30px;
        flex-shrink: 0;
    }

    .credential-item h3 {
        margin: 0;
        font-family: "area-normal", sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        color: var(--font-color);
    }

    .credential-item p {
        margin: 4px 0 0 0;
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        line-height: 1.6;
        color: var(--font-light);
    }

    .credential-photo {
        grid-column: 1 / -1;
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    .credential-photo img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: 50% 20%;
    }

    .credential-photo-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 15px 15px 15px;
        background: linear-gradient(180deg, rgba(1, 13, 23, 0) 0%, rgba(1, 13, 23, 0.85) 100%);
    }

    .credential-photo-caption h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .credential-photo-caption p {
        margin: 4px 0 15px 0;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        line-height: 1.5;
        color: var(--light-color);
    }

    .testimonial-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 35px 25px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .testimonial-tag {
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--secondary-color);
        background: var(--accent-color);
    }

    .testimonial-headline {
        margin: 20px 0 0 0;
        font-size: 20px;
        font-weight: 900;
        line-height: 1.4;
        color: var(--secondary-color);
    }

    .testimonial-image {
        width: 140px;
        height: 140px;
        margin: 20px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 30%;
    }

    .testimonial-text {
        margin: 15px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
    }

    .testimonial-author {
        margin: 15px 0 0 0;
        font-size: 14px;
        font-weight: 700;
        color: var(--light-color);
    }

    .testimonial-stats {
        width: 100%;
        margin: 25px 0 0 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .testimonial-stat {
        padding: 18px 10px;
        border-radius: 5px;
        text-align: center;
        background: rgba(25, 176, 253, 0.12);
    }

    .testimonial-stat h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        color: var(--accent-color);
    }

    .testimonial-stat h4 i {
        margin: 0 4px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }

    .testimonial-stat p {
        margin: 8px 0 0 0;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--secondary-color);
    }

    .audience-heading {
        margin: 50px 0 40px 0;
    }

    .audience-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        align-items: stretch;
    }

    .audience-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 25px 12px;
        border-radius: 15px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08), 0 10px 25px rgba(1, 13, 23, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .audience-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .audience-card i {
        font-size: 30px;
        color: var(--accent-color);
    }

    .audience-card h3 {
        margin: 12px 0 0 0;
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        color: var(--font-color);
    }

    .audience-card p {
        margin: 8px 0 0 0;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
        color: var(--font-light);
    }

    .audience-banner {
        grid-column: 1 / -1;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 35px 20px;
        border-radius: 15px;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
        overflow: hidden;
    }

    .audience-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-blue);
    }

    .audience-banner h3 {
        margin: 0;
        font-size: 19px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--secondary-color);
    }

    .audience-banner h3 span {
        color: var(--accent-color);
    }

    .audience-banner p {
        margin: 10px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
    }

    .audience-banner a {
        display: inline-block;
        margin: 20px 0 0 0;
        padding: 15px 25px;
        border-radius: 2px;
        border: 2px solid var(--accent-color);
        font-size: 16px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
        transition: all 0.2s ease;
    }

    .tier-container {
        width: 100%;
        margin: 50px auto 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 40px;
        align-items: stretch;
    }

    .tier-card {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 50px 25px 25px 25px;
        border-radius: 10px;
        background: var(--secondary-color);
        box-shadow: 0 2px 6px rgba(1, 13, 23, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tier-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-deep);
    }

    .tier-featured {
        order: -1;
        background: linear-gradient(160deg, #04121e 0%, #010d17 60%, #032a44 100%);
        box-shadow: 0 10px 30px rgba(0, 123, 205, 0.25);
    }

    .tier-featured::before {
        background: var(--gradient-blue);
    }

    .tier-badge {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
        background: var(--off-color);
        border: 1px solid var(--light-color);
    }

    .tier-featured .tier-badge {
        color: var(--secondary-color);
        background: var(--accent-color);
        border: 1px solid var(--accent-color);
    }

    .tier-elite .tier-badge {
        color: var(--secondary-color);
        background: var(--font-color);
        border: 1px solid var(--font-color);
        animation: tier-badge-pulse 2.5s infinite;
    }

    .tier-number {
        margin: 30px 0 0 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-light);
    }

    .tier-featured .tier-number {
        color: var(--light-color);
    }

    .tier-name {
        margin: 5px 0 0 0;
        font-size: 24px;
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        color: var(--font-color);
    }

    .tier-featured .tier-name {
        color: var(--secondary-color);
    }

    .tier-tagline {
        margin: 10px 0 0 0;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        line-height: 1.5;
        color: var(--font-light);
    }

    .tier-featured .tier-tagline {
        color: var(--light-color);
    }

    .tier-image {
        width: 100%;
        height: 160px;
        margin: 20px 0 0 0;
        border-radius: 5px;
        object-fit: cover;
        object-position: 50% 35%;
        transition: transform 0.3s ease;
    }

    .tier-card:hover .tier-image {
        transform: scale(1.02);
    }

    .tier-price {
        margin: 25px 0 0 0;
        font-size: 45px;
        font-weight: 900;
        line-height: 1;
        text-align: center;
        color: var(--primary-color);
    }

    .tier-featured .tier-price {
        color: var(--accent-color);
    }

    .tier-price span {
        font-size: 16px;
        font-weight: 700;
        color: var(--font-light);
    }

    .tier-featured .tier-price span {
        color: var(--light-color);
    }

    .tier-meta {
        margin: 15px 0 0 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.6;
        color: var(--primary-color);
    }

    .tier-featured .tier-meta {
        color: var(--accent-color);
    }

    .tier-description {
        margin: 20px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-featured .tier-description {
        color: rgba(255, 255, 255, 0.85);
    }

    .tier-checklist {
        margin: 25px 0 0 0;
        padding: 25px 0 0 0;
        border-top: 1px solid rgba(1, 13, 23, 0.1);
        list-style: none;
    }

    .tier-featured .tier-checklist {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tier-checklist li {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 12px 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.6;
        color: var(--font-color);
    }

    .tier-featured .tier-checklist li {
        color: var(--secondary-color);
    }

    .tier-checklist i {
        margin: 4px 0 0 0;
        font-size: 13px;
        color: var(--accent-color);
    }

    .tier-bonus {
        margin: auto 0 0 0;
        padding: 12px 15px;
        border-radius: 5px;
        font-size: 13px;
        font-weight: 800;
        text-align: center;
        color: var(--primary-color);
        background: var(--off-color);
    }

    .tier-featured .tier-bonus {
        color: var(--accent-color);
        background: rgba(25, 176, 253, 0.12);
    }

    .tier-bonus i {
        margin: 0 5px 0 0;
    }

    .tier-button {
        display: block;
        margin: 20px 0 0 0;
        padding: 15px 25px;
        border-radius: 2px;
        border: 2px solid var(--primary-color);
        font-size: 16px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--primary-color);
        background-color: transparent;
        transition: all 0.2s ease;
    }

    .tier-button:active {
        color: var(--secondary-color);
        background-color: var(--primary-color);
    }

    .tier-featured .tier-button {
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
        box-shadow: 0 5px 20px rgba(25, 176, 253, 0.4);
    }

    .tier-footnote {
        margin: 40px auto 0 auto;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        line-height: 1.7;
        color: var(--font-light);
    }

    .tier-footnote a {
        color: var(--primary-color);
        font-weight: 800;
    }
}
