/* =========================================
   CUSTOM THEME VARIABLES
   ========================================= */
   :root {
    --dark-blue: #16325c;
    --light-blue: #48aee3;
    --pale-blue: #e8f5fb;
    --color-main: #46C0FF;
    --yellow: #fcc827;
    --green: #5cb85c;
    --dark-green: #4cae4c;
    --gray-bg: #f4f6f8;
    --color-main-text: #123462;
}
.fs-50 {font-size: 50px;}
.pronunciation-hero {
    background: linear-gradient(to bottom, var(--color-main) 0%, #FFFFFF 100%);
    padding: 10rem 0 3rem;
}

.pronunciation-hero__image {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

.pronunciation-hero__content {
    color: var(--color-main-text);
}

.pronunciation-hero__title {
    font-family: "Nunito", sans-serif;
}

.pronunciation-hero__text {
    font-family: "Nunito", sans-serif;
    color: var(--color-main-text);
}

.pronunciation-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.55rem;
    border-radius: 14px;
    border: 1px solid #d8b400;
    background: linear-gradient(180deg, #ffdf50 0%, #f0cb1b 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #1d3557;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pronunciation-hero__button:hover,
.pronunciation-hero__button:focus {
    color: #1d3557;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.16);
    filter: brightness(1.02);
}

.pronunciation-hero--ready .row {
    animation: pronunciationHeroFadeIn 0.45s ease-out both;
}

@keyframes pronunciationHeroFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .pronunciation-hero {
        padding-top: 116px;
    }
}

@media (max-width: 767.98px) {
    .pronunciation-hero {
        padding-top: 106px;
        padding-bottom: 36px;
    }
}

.pronunciation-overview {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 10%, #7cccf5 0%, #56b8ea 48%, #4aaedf 100%);
}

.pronunciation-overview__cloud {
    position: absolute;
    width: clamp(90px, 12vw, 170px);
    opacity: 0.88;
    pointer-events: none;
}

.pronunciation-overview__cloud--left {
    left: -2%;
    top: 18%;
}

.pronunciation-overview__cloud--right {
    right: -2%;
    bottom: 12%;
}

.pronunciation-overview__shell {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    padding: clamp(1.15rem, 2.4vw, 2rem);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 34px rgba(15, 77, 115, 0.22);
    backdrop-filter: blur(2px);
}

.pronunciation-overview__copy {
    border-radius: 20px;
    padding: clamp(1rem, 1.8vw, 1.4rem);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.pronunciation-overview__kicker {
    display: inline-block;
    padding: 0.32rem 0.85rem;
    border-radius: 999px;
    background: #123462;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pronunciation-overview__text {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.62;
    color: #123665;
}

.pronunciation-overview__title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1.9rem, 1.35vw + 1.3rem, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #10305b;
}

.pronunciation-overview__visual {
    border-radius: 20px;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(238, 248, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    text-align: center;
    box-shadow: 0 12px 24px rgba(13, 72, 107, 0.15);
}

.pronunciation-overview__mascot {
    width: min(100%, 190px);
    margin: 0 auto 0.85rem;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(18, 52, 98, 0.16));
}

.pronunciation-overview__flags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pronunciation-overview__flag {
    width: 72px;
    border-radius: 5px;
    box-shadow: 0 8px 15px rgba(18, 52, 98, 0.2);
}

@media (max-width: 767.98px) {
    .pronunciation-overview__cloud {
        opacity: 0.72;
    }

    .pronunciation-overview__shell {
        border-radius: 20px;
        padding: 0.95rem;
    }

    .pronunciation-overview__copy,
    .pronunciation-overview__visual {
        border-radius: 14px;
    }

    .pronunciation-overview__flag {
        width: 62px;
    }
}

.pronunciation-usage__shell {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0f3b6a 0%, #11548e 52%, #1572b7 100%);
    border-radius: 28px;
    padding: clamp(1.2rem, 2vw, 2rem);
    box-shadow: 0 18px 40px rgba(13, 49, 88, 0.28);
}

.pronunciation-usage__shell::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -120px;
    right: -95px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.pronunciation-usage__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d5ecff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pronunciation-usage__title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1.85rem, 1.4vw + 1.35rem, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
}

.pronunciation-usage__title-accent {
    color: #f27db3;
}

.pronunciation-usage__intro {
    font-size: clamp(0.95rem, 0.35vw + 0.85rem, 1.12rem);
    font-weight: 700;
    color: #d5eaff;
}

.pronunciation-usage__center {
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); */
    padding: 1.1rem 1rem;
    text-align: center;
    /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); */
}

.pronunciation-usage__center-image {
    width: auto;
    filter: drop-shadow(0 10px 22px rgba(10, 30, 54, 0.45));
}

.pronunciation-usage__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.33rem 0.72rem;
    border-radius: 999px;
    background: #ffffff;
    color: #114a80;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.pronunciation-usage__tag img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.pronunciation-usage__card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.1rem 1rem;
    box-shadow: 0 12px 24px rgba(10, 36, 64, 0.2);
    border-top: 5px solid transparent;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pronunciation-usage__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(10, 36, 64, 0.24);
}

.pronunciation-usage__card--class {
    border-top-color: #4ab5f0;
}

.pronunciation-usage__card--home {
    border-top-color: #f27db3;
}

.pronunciation-usage__chip {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.72rem;
    border-radius: 8px;
    background: #e9f4ff;
    color: #1c4f81;
    font-weight: 800;
    letter-spacing: 0.42px;
    text-transform: uppercase;
}

.pronunciation-usage__card-heading {
    margin: 0 0 0.65rem;
    font-family: "Nunito", sans-serif;
    font-size: clamp(1.05rem, 0.45vw + 0.9rem, 1.3rem);
    font-weight: 900;
    line-height: 1.3;
    color: #133d6a;
}

.pronunciation-usage__card-text {
    font-family: "Nunito", sans-serif;
    line-height: 1.62;
    font-weight: 700;
    color: #214c79;
}

@media (max-width: 991.98px) {
    .pronunciation-usage__shell {
        border-radius: 22px;
    }

    .pronunciation-usage__center-image {
        max-height: 170px;
    }
    .fs-50 {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .pronunciation-usage__shell {
        border-radius: 18px;
        padding: 1rem;
    }

    .pronunciation-usage__card {
        padding: 1rem;
    }

    .pronunciation-usage__center-image {
        max-height: 150px;
    }

    .pronunciation-usage__tag {
        font-size: 0.72rem;
    }
}

/* =========================================
   Benefits — bespoke bento + visual stage
   ========================================= */
.pronunciation-benefits {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    background: #56b8ea;
    overflow: hidden;
}

.pronunciation-benefits__mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(252, 200, 39, 0.22) 0%, transparent 42%),
        radial-gradient(circle at 88% 75%, rgba(255, 255, 255, 0.14) 0%, transparent 38%),
        repeating-linear-gradient(
            -12deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 18px
        );
    pointer-events: none;
}

.pronunciation-benefits__eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(252, 200, 39, 0.95);
    color: #10305b;
    font-family: "Nunito", sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pronunciation-benefits__title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(2rem, 2.2vw + 1.2rem, 3.15rem);
    font-weight: 900;
    line-height: 1.12;
    color: #ffffff;
}

.pronunciation-benefits__lead {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1rem, 0.4vw + 0.9rem, 1.2rem);
    font-weight: 700;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36rem;
}

/* Left: Benefits.png stage */
.pronunciation-benefits__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.75rem);
    border-radius: 28px;
    background: linear-gradient(160deg, #123462 0%, #1a5080 100%);
    border: 1px solid rgba(126, 200, 239, 0.35);
    box-shadow:
        0 24px 50px rgba(5, 12, 24, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.pronunciation-benefits__stage-ring {
    position: absolute;
    width: min(88%, 340px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px dashed rgba(70, 192, 255, 0.35);
    top: 50%;
    left: 50%;
    transform: translate(-48%, -58%);
    animation: pronunciationBenefitsSpin 28s linear infinite;
}

.pronunciation-benefits__stage-ring--two {
    width: min(72%, 280px);
    border-style: solid;
    border-color: rgba(252, 200, 39, 0.2);
    animation-direction: reverse;
    animation-duration: 22s;
}

@keyframes pronunciationBenefitsSpin {
    to {
        transform: translate(-48%, -58%) rotate(360deg);
    }
}

.pronunciation-benefits__figure {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.pronunciation-benefits__art {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}

.pronunciation-benefits__loop {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    width: 100%;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(126, 200, 239, 0.25);
}

.pronunciation-benefits__loop li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(126, 200, 239, 0.3);
    color: #e8f5fb;
    font-family: "Nunito", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pronunciation-benefits__loop-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow, #fcc827);
    box-shadow: 0 0 10px rgba(252, 200, 39, 0.8);
}

/* Right: bento tiles */
.pronunciation-benefits__tile {
    position: relative;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 28px rgba(12, 47, 85, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}

.pronunciation-benefits__tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #46c0ff, #fcc827);
    opacity: 0.85;
}

.pronunciation-benefits__tile:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 36px rgba(12, 47, 85, 0.22);
}

.pronunciation-benefits__tile--featured {
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.pronunciation-benefits__tile--featured::before {
    height: 5px;
    background: linear-gradient(90deg, #fcc827, #ff9f4a, #46c0ff);
}

.pronunciation-benefits__tile--accent {
    background: linear-gradient(160deg, #123462 0%, #1a5080 100%);
    border-color: rgba(126, 200, 239, 0.35);
}

.pronunciation-benefits__tile--accent::before {
    background: var(--yellow, #fcc827);
}

.pronunciation-benefits__tile--accent .pronunciation-benefits__tile-num,
.pronunciation-benefits__tile--accent .pronunciation-benefits__tile-title,
.pronunciation-benefits__tile--accent .pronunciation-benefits__tile-text {
    color: #ffffff;
}

.pronunciation-benefits__tile--accent .pronunciation-benefits__tile-num {
    background: rgba(252, 200, 39, 0.2);
    color: #fcc827;
}

.pronunciation-benefits__tile--stack {
    background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
}

.pronunciation-benefits__tile-num {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    background: #e8f5fb;
    color: #123462;
    font-family: "Nunito", sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.pronunciation-benefits__tile-title {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-main-text, #123462);
    margin: 0 0 0.45rem;
}

.pronunciation-benefits__tile-title--sm {
    font-size: 0.92rem;
    margin-top: 0.15rem;
}

.pronunciation-benefits__tile-text {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.5;
    color: #214c79;
}

.pronunciation-benefits__tile-divider {
    margin: 0.65rem 0;
    border: 0;
    border-top: 1px dashed rgba(18, 52, 98, 0.2);
    opacity: 1;
}

.pronunciation-benefits__ribbon {
    padding: clamp(1.1rem, 2vw, 1.4rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 16px;
    background: linear-gradient(105deg, #fcc827 0%, #ffe566 48%, #fcc827 100%);
    border-left: 6px solid #123462;
    box-shadow: 0 12px 30px rgba(12, 47, 85, 0.2);
}

.pronunciation-benefits__ribbon p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem);
    font-weight: 800;
    line-height: 1.45;
    color: #123462;
}

.pronunciation-benefits__ribbon strong {
    font-weight: 900;
}

/* Stagger reveal */
.pronunciation-benefits__stage:not(.is-visible),
[data-benefit-tile]:not(.is-visible) {
    opacity: 0;
    transform: translateY(18px);
}

.pronunciation-benefits__tile.is-visible,
.pronunciation-benefits__stage.is-visible {
    animation: pronunciationBenefitsFadeUp 0.55s ease both;
}

.pronunciation-benefits__bento .col:nth-child(1) .pronunciation-benefits__tile { animation-delay: 0.05s; }
.pronunciation-benefits__bento .col:nth-child(2) .pronunciation-benefits__tile { animation-delay: 0.12s; }
.pronunciation-benefits__bento .col:nth-child(3) .pronunciation-benefits__tile { animation-delay: 0.18s; }
.pronunciation-benefits__bento .col:nth-child(4) .pronunciation-benefits__tile { animation-delay: 0.24s; }
.pronunciation-benefits__bento .col:nth-child(5) .pronunciation-benefits__tile { animation-delay: 0.3s; }

@keyframes pronunciationBenefitsFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .pronunciation-benefits__stage {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 991.98px) {
    .pronunciation-benefits__stage {
        max-width: 440px;
        margin: 0 auto;
    }

    .pronunciation-benefits__intro {
        text-align: center;
    }

    .pronunciation-benefits__lead {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .pronunciation-benefits__stage {
        border-radius: 22px;
    }

    .pronunciation-benefits__loop li {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }

    .pronunciation-benefits__ribbon {
        border-left-width: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pronunciation-benefits__stage-ring,
    .pronunciation-benefits__stage-ring--two {
        animation: none;
    }

    .pronunciation-benefits__tile.is-visible,
    .pronunciation-benefits__stage.is-visible {
        animation: none;
    }
}

/* =========================================
   Pricing section (section 5)
   ========================================= */


.pricing-tabs__title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(2rem, 1.7vw + 1.15rem, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: #123462;
}

.pricing-tabs {
    position: relative;
    background: #e9a9bc;
    border-radius: 28px;
    padding: 2.1rem 1.15rem 1.5rem;
}

.pricing-tabs__nav {
    position: absolute;
    top: -36px;
    left: 1.2rem;
    border: 0;
}

.pricing-tabs__nav .nav-link {
    border: 1px dashed rgba(18, 52, 98, 0.25);
    border-radius: 12px !important;
    background: #f6c2d1;
    color: #123462;
    font-family: "Nunito", sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 0.72rem 2rem;
    line-height: 1;
    width: fit-content;
    min-width: 220px;
    box-shadow: none !important;
}

.pricing-tabs__nav .nav-link.active {
    background: #f6c2d1;
    color: #123462;
}

.pricing-tabs__content {
    padding-top: 1rem;
}

.pricing-tabs__card {
    background: #ef4e7b;
    border-radius: 16px;
    padding: 1.6rem 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.65);
    text-align: center;
    box-shadow: 0 12px 22px rgba(132, 29, 64, 0.2);
}

.pricing-tabs__card-title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1.8rem, 1.1vw + 1.45rem, 2.35rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-tabs__card-subtitle {
    font-family: "Nunito", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.pricing-tabs__card-price {
    font-family: "Nunito", sans-serif;
    font-size: clamp(2.35rem, 1.35vw + 1.9rem, 3.1rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin: 0.5rem 0 1rem;
}

.pricing-tabs__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    border-radius: 14px;
    padding: 0.58rem 1.1rem;
    background: #86123c;
    color: #fff;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 16px rgba(101, 14, 45, 0.28);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.pricing-tabs__card-btn:hover,
.pricing-tabs__card-btn:focus {
    color: #fff;
    background: #6f0d31;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .pricing-tabs {
        padding-top: 2.4rem;
    }

    .pricing-tabs__nav {
        left: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-tabs {
        border-radius: 20px;
        padding: 2.25rem 0.85rem 1rem;
    }

    .pricing-tabs__nav {
        top: -28px;
        left: 0.75rem;
    }

    .pricing-tabs__nav .nav-link {
        font-size: 1rem;
        padding: 0.62rem 1.2rem;
        min-width: 190px;
    }

    .pricing-tabs__card-title {
        font-size: 1.95rem;
    }

    .pricing-tabs__card-btn {
        min-width: 142px;
        font-size: 1.4rem;
    }
}

/* Pronunciation pricing color combination (pink theme) */
.pronunciation-pricing {
    background: #fff;
}

.pronunciation-pricing__single-tab.pricingTabs2 .tab-content {
    background: #e3a0b4 !important;
    border-radius: 22px;
    padding: 5rem 2rem 6rem 2rem;
}

.pronunciation-pricing__single-tab.pricingTabs2 .tabsBtn {
    background: #e3a0b4 !important;
    border-color: #e3a0b4 !important;
    color: #123462 !important;
    border-radius: 14px 14px 0 0 !important;
    opacity: 0.6;
    box-shadow: none !important;
}
.pronunciation-pricing__single-tab.pricingTabs2 .tabsBtn.active {
    opacity: 1;
}
.pronunciation-pricing__single-tab.pricingTabs2 .tabsBtn::before,
.pronunciation-pricing__single-tab.pricingTabs2 .tabsBtn::after {
    display: none;
}

.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain {
    background: #ec4d7a !important;
    border: 2px solid rgba(255, 255, 255, 0.82) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 18px rgba(129, 35, 70, 0.18);
    padding-bottom: 60px;
}

.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain .tagline,
.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain p {
    color: #fff !important;
}

.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain .price {
    color: #fff !important;
}

.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain .blueBtn {
    background: #8a0f3a !important;
    color: #fff !important;
    border-color: #8a0f3a !important;
    border-radius: 14px !important;
    font-size: clamp(1.5rem, 1vw + 1.2rem, 2rem);
    line-height: 1;
    padding: 0.52rem 1.3rem;
}

.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain .blueBtn:hover,
.pronunciation-pricing__single-tab.pricingTabs2 .pricingInfoMain .blueBtn:focus {
    background: #730d31 !important;
    border-color: #730d31 !important;
    color: #fff !important;
}

@media (max-width: 767.98px) {
    .pronunciation-pricing__single-tab.pricingTabs2 .tab-content {
        padding: 1.35rem 0.9rem 1.5rem;
        border-radius: 16px;
    }
}

/* =========================================
   Sixth section: Intro video
   ========================================= */
.pronunciation-video {
    background: linear-gradient(180deg, #56b8ea 0%, #49addf 100%);
}

.pronunciation-video__frame {
    border-radius: 26px;
    background: linear-gradient(160deg, #123462 0%, #1a5080 100%);
    border: 1px solid rgba(126, 200, 239, 0.35);
    padding: clamp(1rem, 2vw, 1.6rem);
    box-shadow: 0 16px 30px rgba(11, 57, 87, 0.24);
}

.pronunciation-video__eyebrow {
    display: inline-block;
    border-radius: 999px;
    background: #ffd128;
    color: #123462;
    padding: 0.34rem 0.9rem;
    font-family: "Nunito", sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pronunciation-video__title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1.9rem, 1.6vw + 1.05rem, 2.85rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
}

.pronunciation-video__lead {
    font-family: "Nunito", sans-serif;
    font-size: clamp(1rem, 0.35vw + 0.92rem, 1.15rem);
    font-weight: 700;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.pronunciation-video__points li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.45rem;
    color: #dff3ff;
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.pronunciation-video__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffd128;
}

.pronunciation-video__embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #091b34;
    box-shadow: 0 12px 26px rgba(8, 28, 52, 0.34);
}

.pronunciation-video__embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767.98px) {
    .pronunciation-video__frame {
        border-radius: 18px;
        padding: 0.9rem;
    }

    .pronunciation-video__title {
        text-align: center;
    }

    .pronunciation-video__lead {
        text-align: center;
    }

    .pronunciation-video__eyebrow {
        display: table;
        margin: 0 auto;
    }

    .pronunciation-video__embed-wrap {
        border-radius: 12px;
    }
}

/* =========================================
   Sixth section: Step-by-Step Walkthrough
   ========================================= */
.pronunciation-walkthrough {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 15%, #8bd1f4 0%, #56b8ea 42%, #49addf 100%);
    border-bottom: 1px solid #123462;
}

.pronunciation-walkthrough__frame {
    position: relative;

}

.pronunciation-walkthrough__kicker {
    display: inline-block;
    padding: 0.34rem 0.95rem;
    border-radius: 999px;
    background: #123462;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pronunciation-walkthrough__title {
    font-family: "Nunito", sans-serif;
    font-size: clamp(2rem, 1.8vw + 1.15rem, 3.1rem);
    font-weight: 900;
    line-height: 1.15;
    color: #123462;
}

.pronunciation-walkthrough__cloud {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
    width: clamp(96px, 12vw, 165px);
}

.pronunciation-walkthrough__cloud--left {
    left: -11%;
  top: 24%;
  z-index: 55;
}

.pronunciation-walkthrough__cloud--right {
    right: -5%;
  bottom: 4%;
  z-index: 55;
}

.pronunciation-walkthrough__angel {
    position: absolute;
    right: 4%;
    top: 6%;
    width: clamp(82px, 9vw, 132px);
    pointer-events: none;
}

.pronunciation-walkthrough__connector {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 38%;
    height: 170px;
    z-index: 0;
}

.pronunciation-walkthrough__connector svg {
    width: 100%;
    height: 100%;
}

.pronunciation-walkthrough__connector path {
    fill: none;
    stroke: rgba(18, 52, 98, 0.72);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 8 10;
}

.pronunciation-walkthrough .row {
    position: relative;
    z-index: 1;
}

.pronunciation-walkthrough__card {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(180deg, #184f73 0%, #12425f 100%);
    color: #fff;
    padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1.05rem, 1.6vw, 1.35rem);
    box-shadow: 0 14px 30px rgba(11, 57, 87, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.pronunciation-walkthrough__card--focus {
    transform: translateY(-10px);
    background: linear-gradient(180deg, #1d5c85 0%, #154a6a 100%);
}

.pronunciation-walkthrough__icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    margin: 0 auto 0.7rem;
    display: block;
    filter: drop-shadow(0 6px 10px rgba(8, 32, 47, 0.35));
}

.pronunciation-walkthrough__card p {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.58;
}

.pronunciation-walkthrough__step {
    position: absolute;
    top: -16px;
    left: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd128;
    color: #123462;
    font-family: "Nunito", sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(18, 52, 98, 0.2);
}

.pronunciation-walkthrough__cta {
    border-radius: 12px;
    padding: 0.58rem 1.25rem;
    letter-spacing: 0.03em;
}

@media (max-width: 991.98px) {
    .pronunciation-walkthrough__connector {
        display: none;
    }

    .pronunciation-walkthrough__cloud {
        opacity: 0.7;
    }

    .pronunciation-walkthrough__angel {
        right: 2%;
        top: 3%;
        width: 90px;
    }

    .pronunciation-walkthrough__card--focus {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .pronunciation-walkthrough__frame {
        border-radius: 22px;
        padding: 1rem;
    }

    .pronunciation-walkthrough__cloud--left {
        left: -6%;
        top: 26%;
    }

    .pronunciation-walkthrough__cloud--right {
        right: -6%;
        bottom: 8%;
    }

    .pronunciation-walkthrough__angel {
        width: 70px;
        top: 2%;
    }

    .pronunciation-walkthrough__icon {
        width: 54px;
        height: 54px;
    }

    .pronunciation-walkthrough__step {
        width: 44px;
        height: 44px;
        font-size: 1.45rem;
    }
}
