/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #fff;
    color: #17251d;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: rgba(14, 160, 98, 0.96);
    --primary-dark: #087447;
    --primary-deep: #062a1b;
    --primary-soft: #eaf8f2;

    --gold: #d6a936;
    --gold-light: #fff6d7;

    --dark: #102119;
    --dark-soft: #20352b;
    --text: #17251d;
    --muted: #5e6e65;

    --white: #fff;
    --off-white: #f7faf8;
    --gray-50: #fafcfb;
    --gray-100: #eef3f0;
    --gray-200: #dce6e0;
    --gray-400: #91a097;

    --shadow-sm: 0 8px 25px rgba(5, 44, 28, 0.07);
    --shadow-md: 0 18px 45px rgba(5, 44, 28, 0.11);
    --shadow-lg: 0 25px 70px rgba(5, 44, 28, 0.16);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 25px;

    --container: 1180px;
    --content: 850px;
}


/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.narrow-container {
    max-width: var(--content);
}

.section {
    padding: 110px 0;
}


/* =========================================================
   GLOBAL SECTION HEADINGS
========================================================= */

.section-heading {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading .section-tag,
.section-heading .eyebrow {
    display: inline-block;
    margin-bottom: 15px;
}

.section-tag,
.eyebrow {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    color: var(--primary-deep);
    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    max-width: 700px;
    margin-inline: auto;
    font-size: 17px;
    color: var(--muted);
}


/* =========================================================
   GLOBAL HEADING RULES
========================================================= */

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(14, 160, 98, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn span {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 25px rgba(14, 160, 98, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(14, 160, 98, 0.3);
    color: var(--primary-dark);
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--gray-100);
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--primary-deep);
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-soft);
    transition: color 0.2s ease;
}

.main-nav > a:hover {
    color: var(--primary);
}

.main-nav .nav-cta {
    padding: 12px 18px;
    border-radius: 7px;
    background: var(--primary);
    color: #fff;
}

.main-nav .nav-cta:hover {
    background: var(--primary-dark);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    padding: 7px;
    border: 0;
    border-radius: 8px;
    background: transparent;
}

.mobile-menu-btn:hover {
    background: var(--primary-soft);
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary-deep);
    transition: 0.25s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /*margin-top: 108px;*/

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(14, 160, 98, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f4faf7 0%,
            #fff 60%
        );
}

.hero-background {
    position: absolute;
    top: -150px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(214, 169, 54, 0.1);
    filter: blur(2px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 90px;
}

.hero-content {
    max-width: 760px;
}

.hero-content .eyebrow {
    margin-bottom: 20px;
    color: var(--gold);
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--primary-deep);
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
}

.hero-subtitle {
    margin-bottom: 17px;
    color: var(--primary-dark);
    font-size: 23px;
    font-weight: 800;
}

.hero-description {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.hero-meta {
    display: flex;
    gap: 0;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.hero-meta div {
    min-width: 150px;
    margin-right: 25px;
    padding-right: 25px;
    border-right: 1px solid var(--gray-200);
}

.hero-meta div:last-child {
    margin-right: 0;
    border-right: 0;
}

.hero-meta strong {
    display: block;
    color: var(--primary-dark);
    font-size: 18px;
}

.hero-meta span {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    position: relative;
    min-height: 420px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary-deep)
        );

    color: #fff;
    box-shadow: var(--shadow-lg);
}

.hero-card::before,
.hero-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-card::before {
    top: -80px;
    right: -80px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card::after {
    left: -80px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(214, 169, 54, 0.25);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px;
    font-size: 22px;
    font-weight: 800;
}

.status-dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e8c35a;
}

.hero-card-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-card h2 {
    margin: 10px 0 25px;
    color: #fff;
    font-size: 52px;
    line-height: 1;
}

.hero-card h2 strong {
    display: block;
    color: #e8c35a;
}

.hero-card-divider {
    width: 50px;
    height: 3px;
    margin-bottom: 20px;
    background: #e8c35a;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
}

.hero-card-link {
    margin-top: 30px;
    color: #e8c35a;
    font-weight: 700;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    background: #fff;
}

.intro-text {
    color: var(--muted);
    font-size: 18px;
}

.intro-text p + p {
    margin-top: 22px;
}

.center-action {
    margin-top: 35px;
    text-align: center;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 800;
}

.text-button span {
    transition: transform 0.2s ease;
}

.text-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-section {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 34px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: #fff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-number {
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.benefit-card h3 {
    margin-bottom: 13px;
    color: var(--primary-dark);
    font-size: 20px;
    line-height: 1.25;
}

.benefit-card p {
    color: var(--muted);
    font-size: 15px;
}

.benefit-highlight {
    background: var(--primary-deep);
}

.benefit-highlight h3 {
    color: #fff;
}

.benefit-highlight p {
    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   MODULES
========================================================= */

.modules-section {
    background: #fff;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.module-card {
    padding: 32px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: #fff;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.module-card:hover {
    border-color: rgba(14, 160, 98, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.module-top {
    margin-bottom: 18px;
}

.module-number {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 800;
}

.module-card h3 {
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 21px;
    line-height: 1.25;
}

.module-card > p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.module-card ul {
    display: grid;
    gap: 8px;
}

.module-card li {
    position: relative;
    padding-left: 20px;
    color: var(--dark-soft);
    font-size: 13px;
}

.module-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {
    background: var(--primary-deep);
    color: #fff;
}

.audience-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.audience-content .section-tag {
    color: #e8c35a;
}

.audience-content h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.audience-content h2 span {
    color: #e8c35a;
}

.audience-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.audience-item span {
    color: #e8c35a;
    font-weight: 900;
}


/* =========================================================
   INCLUDED
========================================================= */

.included-section {
    background: var(--off-white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.included-card {
    padding: 38px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: #fff;
}

.included-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.included-card h3 {
    margin-bottom: 13px;
    color: var(--primary-dark);
    font-size: 20px;
}

.included-card p {
    color: var(--muted);
    font-size: 15px;
}

/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    background: #fff;
}

.pricing-grid {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   PRICE CARD
========================================================= */

.price-card {
    position: relative;

    width: 100%;
    min-width: 0;

    padding: 36px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);

    background: #fff;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.price-card:hover {
    border-color: rgba(14, 160, 98, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   FEATURED — FIRST STAGE
========================================================= */

.price-card.featured {
    border: 2px solid var(--primary);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fcf9 100%
        );

    box-shadow: var(--shadow-md);

    transform: translateY(-5px);
}

.price-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}


/* =========================================================
   PRICE CARD CONTENT
========================================================= */

.price-card-header {
    width: 100%;
}

.price-label {
    display: block;

    margin-bottom: 13px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.price-card.featured .price-label {
    color: var(--primary);
}

.price-card h3 {
    margin: 0;

    color: var(--primary-dark);

    font-size: 24px;
    font-weight: 800;

    line-height: 1.25;
}


/* =========================================================
   PRICE
========================================================= */

.price {
    margin: 30px 0 20px;
}

.price strong {
    display: block;

    color: var(--primary-dark);

    font-size: 38px;
    font-weight: 800;

    line-height: 1;
}

.price span {
    display: block;

    margin-top: 8px;

    color: var(--muted);

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.price-card > p,
.price-description {
    min-height: 65px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.6;
}


/* =========================================================
   PRICE LIST
========================================================= */

.price-list {
    display: grid;
    gap: 10px;

    margin: 25px 0 30px;
}

.price-list li {
    position: relative;

    padding-left: 20px;

    color: var(--dark-soft);

    font-size: 13px;
}

.price-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--primary);

    font-weight: 900;
}


/* =========================================================
   PRICE BUTTON
========================================================= */

.price-btn {
    width: 100%;
    min-height: 52px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    background: var(--primary-dark);
    color: #fff;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.price-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(14, 160, 98, 0.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .pricing-grid {
        max-width: 720px;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .price-card {
        padding: 30px;
    }

    .price-card h3 {
        font-size: 22px;
    }

    .price strong {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .pricing-grid {
        width: 100%;
        max-width: 520px;

        grid-template-columns: 1fr;

        gap: 22px;
    }

    .price-card {
        width: 100%;
        padding: 30px 25px;
    }

    /*
       Remove the desktop lift on mobile
       so the cards remain properly aligned.
    */
    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-3px);
    }

    .price-card h3 {
        font-size: 23px;
    }

    .price strong {
        font-size: 36px;
    }

    .price-card > p,
    .price-description {
        min-height: auto;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .pricing-grid {
        max-width: 100%;
        gap: 18px;
    }

    .price-card {
        padding: 27px 21px;
        border-radius: 16px;
    }

    .price-card h3 {
        font-size: 21px;
    }

    .price strong {
        font-size: 33px;
    }

    .price span {
        font-size: 15px;
    }

    .price-card > p,
    .price-description {
        font-size: 13px;
    }

    .price-list li {
        font-size: 13px;
    }

    .price-btn {
        min-height: 50px;
    }
}



/* =========================================================
   JOURNEY
========================================================= */

.journey-section {
    background: var(--off-white);
}

.journey {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.journey-step {
    width: 150px;
    text-align: center;
}

.journey-step > span {
    width: 52px;
    height: 52px;
    margin: 0 auto 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.journey-step h3 {
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 1.2;
}

.journey-step p {
    color: var(--muted);
    font-size: 15px;
}

.journey-line {
    flex: 1;
    min-width: 20px;
    height: 2px;
    margin-top: 26px;
    background: var(--gray-200);
}


/* =========================================================
   WHY CEPROD
========================================================= */

.ceprod-section {
    background: #fff;
    text-align: center;
}

.ceprod-grid {
    max-width: 850px;
    margin: 0 auto;
    display: block;
}

.ceprod-section h2 {
    margin-bottom: 25px;
    color: var(--primary-deep);
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.ceprod-section h2 span {
    display: block;
    color: var(--primary);
}

.ceprod-content {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.ceprod-content p {
    margin: 0;
}

.ceprod-content p + p {
    margin-top: 20px;
}

.ceprod-content .text-button {
    margin-top: 30px;
    justify-content: center;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--off-white);
}

.faq-container {
    max-width: var(--content);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--primary);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 14px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(214, 169, 54, 0.18),
            transparent 30%
        ),
        var(--primary-dark);

    color: #fff;
}

.final-cta-section::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.final-cta-content .section-tag {
    color: #e8c35a;
}

.final-cta-content h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.final-cta-content h2 span {
    color: #e8c35a;
}

.final-cta-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.cta-points span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.final-description {
    max-width: 700px;
    margin-inline: auto;
    font-size: 16px !important;
}


/* =========================================================
   REGISTRATION MODAL
========================================================= */

.registration-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.registration-modal.active {
    visibility: visible;
    opacity: 1;
}


/* Modal overlay */

.registration-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 24, 15, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* Modal box */

.registration-modal-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 50px);

    overflow-y: auto;

    padding: 40px;

    border: 1px solid rgba(14, 160, 98, 0.12);
    border-radius: 20px;

    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.98);

    transition:
        transform 0.3s ease;
}

.registration-modal.active .registration-modal-content {
    transform: translateY(0) scale(1);
}


/* Close button */

.close-registration {
    position: absolute;
    top: 17px;
    right: 17px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: var(--gray-100);
    color: var(--primary-dark);

    font-size: 24px;
    line-height: 1;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.close-registration:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}


/* Modal heading */

.registration-modal-header {
    padding-right: 45px;
    margin-bottom: 28px;
}

.registration-modal-header .section-tag {
    display: inline-block;
    margin-bottom: 10px;
}

.registration-modal-header h2 {
    color: var(--primary-deep);
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.1;
}

.registration-modal-header p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}


/* =========================================================
   REGISTRATION FORM
========================================================= */

.registration-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 50px;

    padding: 12px 15px;

    border: 1px solid var(--gray-200);
    border-radius: 8px;

    outline: none;

    background: #fff;
    color: var(--dark);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 160, 98, 0.1);
}


/* =========================================================
   REGISTRATION OPTIONS
========================================================= */

.registration-options {
    display: grid;
    gap: 12px;
}

.registration-option {
    position: relative;
}

.registration-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.registration-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 16px 18px;

    border: 1px solid var(--gray-200);
    border-radius: 10px;

    background: #fff;
    color: var(--dark-soft);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.registration-option label:hover {
    border-color: rgba(14, 160, 98, 0.4);
    background: var(--primary-soft);
}

.registration-option input:checked + label {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 5px 18px rgba(14, 160, 98, 0.08);
}

.registration-option-title {
    font-weight: 700;
}

.registration-option-price {
    flex-shrink: 0;
    color: var(--primary-dark);
    font-weight: 800;
}


/* =========================================================
   REGISTRATION TOTAL
========================================================= */

.registration-total {
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-radius: 10px;

    background: var(--gold-light);
}

.registration-total span {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.registration-total strong {
    color: var(--primary-dark);
    font-size: 25px;
}


/* =========================================================
   REGISTRATION SUBMIT
========================================================= */

.registration-submit {
    width: 100%;
    min-height: 55px;

    border: 0;
    border-radius: 9px;

    background: var(--primary);
    color: #fff;

    font-weight: 800;

    box-shadow: 0 12px 25px rgba(14, 160, 98, 0.2);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.registration-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(14, 160, 98, 0.25);
}


/* =========================================================
   REGISTRATION SUCCESS
========================================================= */

.registration-success {
    display: none;
    padding: 30px 10px;
    text-align: center;
}

.registration-success.active {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--primary-soft);
    color: var(--primary);

    font-size: 32px;
    font-weight: 900;
}

.registration-success h3 {
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-size: 30px;
}

.registration-success p {
    max-width: 500px;
    margin: 0 auto 25px;
    color: var(--muted);
    font-size: 15px;
}

.success-close {
    min-height: 48px;
    padding: 0 25px;

    border: 0;
    border-radius: 8px;

    background: var(--primary-dark);
    color: #fff;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.success-close:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    font-size: 20px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 10px 25px rgba(5, 44, 28, 0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 0 70px;
    }

    .hero-card {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .included-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        width: 100%;
        max-width: 650px;
        margin-inline: auto;
    }

    .ceprod-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .journey {
        flex-wrap: wrap;
        gap: 35px;
    }

    .journey-line {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    html {
        scroll-padding-top: 78px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 75px 0;
    }


    /* HEADINGS */

    .section-heading {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-heading h2 {
        font-size: clamp(32px, 9vw, 40px);
        letter-spacing: -1.2px;
    }

    .section-heading p {
        font-size: 16px;
    }


    /* HEADER */

    .nav-container {
        min-height: 78px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text small {
        font-size: 8px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        padding: 20px;

        border-bottom: 1px solid var(--gray-200);

        background: #fff;
        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav > a {
        padding: 13px 10px;
    }

    .main-nav .nav-cta {
        margin-top: 5px;
        text-align: center;
    }


    /* HERO */

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .eyebrow {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 48px);
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-description {
        margin-inline: auto;
        font-size: 16px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        min-height: 360px;
        padding: 30px;
        text-align: left;
    }

    .hero-card h2 {
        font-size: 45px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 17px;
    }

    .hero-meta div {
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 14px;
        border-right: 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .hero-meta div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }


    /* GRIDS */

    .benefits-grid,
    .modules-grid,
    .audience-list {
        grid-template-columns: 1fr;
    }


    /* CARDS */

    .benefit-card,
    .module-card,
    .included-card {
        padding: 28px;
    }


    /* AUDIENCE */

    .audience-content {
        text-align: center;
    }

    .audience-content h2 {
        font-size: clamp(32px, 9vw, 40px);
    }


    /* PRICING */

    .total-price-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .total-amount {
        text-align: left;
    }


    /* JOURNEY */

    .journey {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .journey-step {
        width: auto;
    }


    /* CEPROD */

    .ceprod-section {
        text-align: center;
    }

    .ceprod-section h2 {
        font-size: clamp(34px, 9vw, 45px);
    }


    /* CTA */

    .final-cta-section {
        padding: 80px 0;
    }

    .final-cta-content h2 {
        font-size: clamp(38px, 10vw, 48px);
    }

    .final-cta-content > p {
        font-size: 17px;
    }

    .cta-points {
        justify-content: center;
    }


    /* REGISTRATION MODAL */

    .registration-modal {
        padding: 15px;
    }

    .registration-modal-content {
        max-height: calc(100vh - 30px);
        padding: 30px 22px;
        border-radius: 16px;
    }

    .registration-modal-header {
        padding-right: 35px;
        margin-bottom: 22px;
    }

    .registration-modal-header h2 {
        font-size: 30px;
    }

    .registration-option label {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .registration-option-price {
        font-size: 14px;
    }

    .registration-total {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }


    /* BACK TO TOP */

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 60px 0;
    }

    .brand {
        gap: 8px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-card {
        padding: 25px;
    }

    .hero-card h2 {
        font-size: 40px;
    }

    .price-card {
        padding: 28px 22px;
    }

    .journey {
        grid-template-columns: 1fr;
    }

    .audience-item {
        text-align: left;
    }

    .registration-modal {
        padding: 8px;
    }

    .registration-modal-content {
        max-height: calc(100vh - 16px);
        padding: 27px 18px;
        border-radius: 14px;
    }

    .registration-modal-header h2 {
        font-size: 27px;
    }

    .close-registration {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 21px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}




/* =========================================================
   MEMBERS INDUCTION FEE
========================================================= */

.members-induction-section {
    background: #fff;
}

.induction-fee-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    align-items: stretch;
}


/* =========================================================
   INDUCTION CARD
========================================================= */

.induction-fee-card {
    position: relative;

    width: 100%;
    min-height: 430px;

    padding: 38px 32px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);

    background: #fff;
    color: inherit;

    text-decoration: none;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* Entire card is clickable */

.induction-fee-card:hover {
    transform: translateY(-6px);

    border-color: rgba(14, 160, 98, 0.45);

    box-shadow: var(--shadow-md);
}


/* Keyboard accessibility */

.induction-fee-card:focus-visible {
    outline: 3px solid rgba(14, 160, 98, 0.25);
    outline-offset: 4px;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.induction-fee-card.featured {
    border: 2px solid var(--primary);

    box-shadow:
        0 18px 45px rgba(14, 160, 98, 0.13);
}

.induction-fee-card.featured:hover {
    border-color: var(--primary-dark);

    box-shadow:
        0 25px 55px rgba(14, 160, 98, 0.18);
}


/* =========================================================
   MEMBERSHIP LEVEL
========================================================= */

.membership-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin-bottom: 20px;
    padding: 7px 13px;

    border-radius: 6px;

    background: var(--primary-soft);
    color: var(--primary-dark);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}


/* =========================================================
   CARD HEADING
========================================================= */

.induction-fee-card h3 {
    margin-bottom: 22px;

    color: var(--primary-dark);

    font-size: 22px;
    line-height: 1.25;
}


/* =========================================================
   PRICE
========================================================= */

.induction-price {
    margin-bottom: 20px;
}

.induction-price strong {
    display: block;

    color: var(--primary-dark);

    font-family: "Manrope", sans-serif;
    font-size: 40px;
    line-height: 1;
}

.induction-price span {
    display: block;

    margin-top: 8px;

    color: var(--muted);

    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.induction-fee-card > p {
    margin-bottom: 30px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   INDUCTION BUTTON
========================================================= */

.induction-fee-button {
    width: 100%;
    min-height: 52px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 8px;

    background: var(--primary-dark);
    color: #fff;

    font-weight: 800;
    text-align: center;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.induction-fee-button span {
    font-size: 20px;

    transition:
        transform 0.25s ease;
}

.induction-fee-card:hover .induction-fee-button {
    background: var(--primary);
}

.induction-fee-card:hover .induction-fee-button span {
    transform: translateX(5px);
}


/* =========================================================
   REGISTRATION NOTE
========================================================= */

.membership-registration-note {
    width: 100%;
    max-width: 850px;

    margin: 35px auto 0;
    padding: 20px 25px;

    border: 1px solid rgba(214, 169, 54, 0.3);
    border-radius: var(--radius-md);

    background: var(--gold-light);

    text-align: center;
}

.membership-registration-note p {
    margin: 0;

    color: var(--primary-dark);

    font-size: 15px;
    line-height: 1.6;
}

.membership-registration-note strong {
    font-weight: 800;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .induction-fee-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
    }

    .induction-fee-card:last-child {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .induction-fee-grid {
        grid-template-columns: 1fr;

        max-width: 520px;

        gap: 18px;
    }

    .induction-fee-card {
        min-height: auto;

        padding: 30px 26px;
    }

    .induction-fee-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .induction-fee-card h3 {
        font-size: 21px;
    }

    .induction-price strong {
        font-size: 36px;
    }

    .membership-registration-note {
        margin-top: 25px;
        padding: 18px 20px;
    }

    .membership-registration-note p {
        font-size: 14px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .induction-fee-card {
        padding: 27px 22px;
        border-radius: 16px;
    }

    .membership-level {
        margin-bottom: 16px;
    }

    .induction-fee-card h3 {
        font-size: 20px;
    }

    .induction-price strong {
        font-size: 34px;
    }

    .induction-price span {
        font-size: 16px;
    }

    .induction-fee-button {
        min-height: 50px;
        font-size: 14px;
    }

    .membership-registration-note {
        padding: 16px;
    }
}
