/*==============================
        RESET
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1F3864;
    --gold: #B8860B;
    --lightGold: #C49A2A;
    --cream: #F8F4EC;
    --white: #ffffff;
    --text: #303030;

    --color-bg: var(--cream);
    --bg-primary: var(--cream);

    --color-primary: var(--gold);
    --accent-color: var(--gold);

    --color-heading: var(--navy);

    --text-primary: var(--navy);
    --text-secondary: var(--text);

    --font-heading: Arial, sans-serif;

    --section-padding: 100px 0;

    --lightGold: #D7B45B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: min(88%, 1200px);
    margin: 0 auto;
}

/*==============================
        HEADER
==============================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(31, 56, 100, .96);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.brand b {
    color: var(--lightGold);
    font-weight: 700;
}

.mk {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    transition: 0.3s ease;
}

.mk svg {
    width: 22px;
    height: 22px;
}

.brand:hover .mk {
    border-color: var(--lightGold);
    transform: rotate(8deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 42px;
}

.nav-links a {
    font-family: Arial, sans-serif;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 6px 0;
}

@media (max-width:768px) {

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/*==============================
            HERO
==============================*/

.hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: var(--navy);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.3rem);
    line-height: 1.05;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 30px;
}

.hero h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 640px;
}

.hero p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: #d9d9d9;
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 36px;
    background: var(--gold);
    color: var(--white);
    font-family: Arial, sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s;
}

.btn-primary:hover {
    background: var(--lightGold);
    transform: translateY(-2px);
}

.text-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--white);
    text-decoration: underline;
    font-family: Arial, sans-serif;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

/*==========================================
        WHAT SIMPLEJOY
==========================================*/

.what-is {
    padding: 100px 0;
    background: var(--white);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: Arial, sans-serif;
    font-size: 42px;
    color: var(--navy);
    font-weight: 700;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.what-card {
    background: var(--white);
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.what-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.what-card h3 {
    font-family: Arial, sans-serif;
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.what-card p {
    font-family: Georgia, serif;
    color: #555;
    font-size: 17px;
}

.what-content {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.what-content p {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.what-content h4 {
    font-family: Arial, sans-serif;
    color: var(--gold);
    font-size: 26px;
    font-weight: 700;
}

/*==========================================
        10 PILLARS
==========================================*/

.pillars {
    padding: 100px 0;
    background: var(--cream);
}

.pillars-heading {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-heading span {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 12px;
}

.pillars-heading h2 {
    font-family: Arial, sans-serif;
    font-size: 44px;
    color: var(--navy);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #fff;
    border: 1px solid #e6d7ba;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: .3s;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.pillar-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.pillar-content h3 {
    font-family: Arial, sans-serif;
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 8px;
}

.pillar-content p {
    font-family: Georgia, serif;
    color: #444;
    line-height: 1.7;
}

.pillar-btn {
    margin-top: 50px;
    text-align: center;
}

/*==========================================
            ORIGIN
==========================================*/

.origin {
    padding: 110px 0;
    background: var(--cream);
}

.origin-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
}

.origin-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.origin-content h2 {
    font-family: Arial, sans-serif;
    color: var(--navy);
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 35px;
}

.origin-content p {
    font-family: Georgia, serif;
    font-size: 20px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 24px;
}

.author {
    margin-top: 45px;
    border-left: 4px solid var(--gold);
    padding-left: 22px;
}

.author h4 {
    font-family: Arial, sans-serif;
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 8px;
}

.author span {
    font-family: Georgia, serif;
    color: #666;
}

/*==========================================
        START TODAY
==========================================*/

.start-today {
    background: var(--navy);
    padding: 100px 0;
}

.start-header {
    text-align: center;
    margin-bottom: 60px;
}

.start-header h2 {
    font-family: Arial, sans-serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1.3;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 35px;
}

.step-number {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 25px;
}

.step-card p {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1.8;
}

.step-card strong {
    color: var(--white);
}

.start-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 18px 36px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: .3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
}

/*==========================================
                FOOTER
==========================================*/

.footer {
    background: var(--navy);
    padding: 60px 0 28px;
}

.footerGrid {
    display: grid;
    gap: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    grid-template-columns: 2fr repeat(4, minmax(120px, 1fr));

}

.footerBrand {
    max-width: 400px;
}

.footerBrand .logo {
    margin-bottom: 20px;
}

.footerBrand p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    font-size: 18px;
    margin: 0;
}

.footerColumn h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.footerColumn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerColumn li {
    margin-bottom: 8px;
}

.footerColumn a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-size: 17px;
}

.footerColumn a:hover {
    color: var(--gold);
}

.footerBottom {
    text-align: center;
    padding-top: 18px;
}

.footerBottom p {
    color: #fff;
    margin: 6px 0;
}

.footerQuote {
    color: var(--gold);
    font-style: italic;
    font-size: 21px;
}

.footerQuote span {
    color: var(--gold);
    font-style: normal;
}

/*========================================================
                    ABOUT HERO
=========================================================*/

.about-hero {
    padding: 150px 20px 120px;
    text-align: center;
}

.about-hero {
    max-width: 900px;
    margin: auto;
}

.hero-label {
    display: inline-block;
    background: #C49A2A;
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 40px;
    font-family: Arial, sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #1F3864;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero h1 span {
    color: #B8860B;
}

.about-hero h2 {
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    max-width: 720px;
    margin: auto;
}

/*========================================================
                    THE ORIGIN
=========================================================*/

.origin {
    background: #FFF9F1;
    padding: 110px 20px;
}

.origin-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #B8860B;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.origin h2 {
    font-family: Arial, sans-serif;
    font-size: 3rem;
    color: #1F3864;
    margin-bottom: 35px;
}

.origin p {
    font-family: Georgia, serif;
    color: #4b4b4b;
    font-size: 1.12rem;
    line-height: 2;
    margin-bottom: 26px;
}

.origin blockquote {
    border-left: 5px solid #B8860B;
    padding-left: 24px;
    margin: 35px 0;
    font-family: Georgia, serif;
    font-size: 1.9rem;
    font-style: italic;
    color: #1F3864;
}

.origin-highlight {
    background: #ffffff;
    border-left: 6px solid #C49A2A;
    padding: 26px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.origin-highlight strong {
    font-family: Arial, sans-serif;
    color: #1F3864;
    font-size: 1.3rem;
}

.origin-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/*========================================================
                    WHO WE ARE
=========================================================*/

.founders {
    padding: 120px 20px;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    margin-bottom: 90px;
}

.section-heading span {
    font-family: Arial, sans-serif;
    color: #B8860B;
    letter-spacing: 2px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 18px;
    font-family: Arial, sans-serif;
    font-size: 3rem;
    color: #1F3864;
}

.founder {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 120px;
}

.founder.reverse {
    grid-template-columns: 1fr 420px;
}

.founder.reverse .founder-image {
    order: 2;
}

.founder.reverse .founder-content {
    order: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.founder-content h3 {
    font-family: Arial, sans-serif;
    font-size: 2.2rem;
    color: #1F3864;
    margin-bottom: 25px;
}

.founder-content p {
    font-family: Georgia, serif;
    font-size: 1.08rem;
    line-height: 2;
    color: #4d4d4d;
    margin-bottom: 22px;
}

.founder-quote {
    margin-top: 40px;
    padding: 28px;
    background: #FFF9F1;
    border-left: 5px solid #C49A2A;
    border-radius: 16px;
    font-family: Georgia, serif;
    font-size: 1.25rem;
    color: #1F3864;
    line-height: 1.8;
}

.founder-quote span {
    color: #B8860B;
    font-weight: bold;
}

/*========================================================
                    WHAT WE BELIEVE
=========================================================*/

.beliefs {
    background: #FFF9F1;
    padding: 120px 20px;
}

.belief-heading {
    text-align: center;
    margin-bottom: 80px;
}

.belief-heading span {
    font-family: Arial, sans-serif;
    color: #B8860B;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .9rem;
}

.belief-heading h2 {
    margin: 20px 0;
    font-family: Arial, sans-serif;
    color: #1F3864;
    font-size: 3rem;
}

.belief-heading p {
    font-family: Georgia, serif;
    color: #666;
    max-width: 720px;
    margin: auto;
    line-height: 1.9;
    font-size: 1.1rem;
}

.belief-list {
    display: grid;
    gap: 28px;
}

.belief-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #FFFFFF;
    padding: 35px;
    border-radius: 18px;
    border-left: 5px solid #C49A2A;
    transition: .3s;
}

.belief-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.belief-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #FFF3D8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.belief-item h3 {
    font-family: Arial, sans-serif;
    color: #1F3864;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.belief-item p {
    font-family: Georgia, serif;
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

.belief-quote {
    margin-top: 90px;
    text-align: center;
    max-width: 850px;
    margin-inline: auto;
    padding: 60px 40px;
    border-top: 2px solid #C49A2A;
    border-bottom: 2px solid #C49A2A;
}

.belief-quote p {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    color: #1F3864;
    line-height: 1.6;
}

/*========================================================
                WHO THIS IS FOR
=========================================================*/

.audience {
    padding: 120px 20px;
    background: #ffffff;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.audience-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

.audience-content h2 {
    font-family: Arial, sans-serif;
    color: #1F3864;
    font-size: 3rem;
    margin: 20px 0 30px;
}

.intro {
    font-family: Georgia, serif;
    line-height: 2;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.audience ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.audience li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 22px;
    font-family: Georgia, serif;
    line-height: 1.8;
    color: #555;
}

.audience li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #B8860B;
    font-size: 1.2rem;
    font-weight: bold;
}

.conversation-box {
    background: #FFF9F1;
    border-left: 5px solid #C49A2A;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 40px;
}

.conversation-box h3 {
    font-family: Arial, sans-serif;
    color: #1F3864;
    margin-bottom: 18px;
}

.conversation-box p {
    font-family: Georgia, serif;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.conversation-box blockquote {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-style: italic;
    color: #B8860B;
}

.audience-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/*========================================================
            16 NATION CONSTELLATION
=========================================================*/

.constellation {
    background: #FFF9F1;
    padding: 130px 20px;
}

.constellation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.constellation-content h2 {
    font-family: Arial, sans-serif;
    color: #1F3864;
    font-size: 3rem;
    margin: 20px 0 35px;
}

.constellation-content p {
    font-family: Georgia, serif;
    color: #555;
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 45px 0;
}

.country-list span {
    background: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: Arial, sans-serif;
    font-size: .95rem;
    color: #1F3864;
    border: 1px solid rgba(184, 134, 11, .25);
    transition: .3s;
}

.country-list span:hover {
    background: #B8860B;
    color: white;
    transform: translateY(-3px);
}

.constellation blockquote {
    border-left: 5px solid #C49A2A;
    padding-left: 25px;
    margin-top: 45px;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    color: #1F3864;
    font-style: italic;
    line-height: 1.8;
}

.constellation-map img {
    width: 100%;
    display: block;
    animation: floatMap 5s ease-in-out infinite;
}

/*========================================================
                    FINAL CTA
=========================================================*/

.about-cta {
    background: linear-gradient(135deg, #1F3864, #274778);
    color: #fff;
    padding: 130px 20px;
    text-align: center;
}

.cta-label {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 40px;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 30px;
}

.about-cta h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 35px;
}

.about-cta p {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 45px;
}

.about-cta blockquote {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    color: #FFD978;
    margin-bottom: 55px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*==========================
START HERO
==========================*/

.startHero {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.startHero .container {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.heroTag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(184, 134, 11, .12);
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.heroContent h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 25px;
}

.heroContent h1 span {
    display: block;
    color: var(--gold);
}

.heroContent p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 540px;
    margin-bottom: 40px;
}

.heroButtons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primaryBtn {
    background: var(--gold);
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: .35s;
}

.primaryBtn:hover {
    background: var(--lightGold);
    transform: translateY(-3px);
}

.secondaryBtn {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: .35s;
}

.secondaryBtn:hover {
    background: var(--navy);
    color: #fff;
}

/*==================
CARDS
==================*/

.heroVisual {
    position: relative;
    height: 500px;
}

.heroCard {
    position: absolute;
    background: #fff;
    width: 240px;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.heroCard span {
    font-size: 34px;
    display: block;
    margin-bottom: 15px;
}

.heroCard h4 {
    color: var(--navy);
    margin-bottom: 10px;
}

.heroCard p {
    color: var(--text);
    line-height: 1.6;
}

.cardOne {
    top: 0;
    left: 0;
}

.cardTwo {
    right: 0;
    top: 130px;
}

.cardThree {
    left: 70px;
    bottom: 0;
}

/*========================
3 STEP ROADMAP
=========================*/

.roadmap {

    background: var(--white);
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    margin-top: 70px;
}

.roadStep {

    display: flex;
    align-items: center;
    gap: 18px;

}

.stepNumber {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;

}

.roadStep h4 {

    color: var(--navy);
    margin-bottom: 6px;

}

.roadStep p {

    margin: 0;
    color: var(--text);
    font-size: .95rem;
    line-height: 1.6;

}

.roadLine {

    width: 2px;
    height: 45px;
    background: var(--lightGold);
    margin: 14px 0 14px 29px;

}


/*=========================================
STEP 1
=========================================*/

.stepSection {
    padding: 100px 0;
    background: var(--white);
}

.stepGrid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

/*========================
LEFT
========================*/

.sectionTag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(184, 134, 11, .12);
    color: var(--gold);
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.stepContent h2 {
    font-size: 2.7rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.introText {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}

/*========================
QUESTION CARD
========================*/

.questionCard {
    background: var(--cream);
    border-left: 6px solid var(--gold);
    padding: 35px;
    border-radius: 18px;
    margin: 35px 0;
}

.questionLabel {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
}

.questionCard h3 {
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--navy);
    margin: 0;
}

.stepContent p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 18px;
}

.stepContent strong {
    color: var(--navy);
}

/*========================
LISTEN BOX
========================*/

.listenBox {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(184, 134, 11, .2);
    border-radius: 18px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.listenIcon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.listenBox h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.listenBox p {
    margin: 0;
}

/*========================
RIGHT CARD
========================*/

.visualCard {
    background: linear-gradient(180deg,
            #ffffff 0%,
            var(--cream) 100%);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.visualCard h3 {
    color: var(--navy);
    margin-bottom: 18px;
    font-size: 1.8rem;
}

.visualCard p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.miniPoints {
    display: grid;
    gap: 15px;
}

.miniPoints div {
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--navy);
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

/*=========================================
STEP 2 - WATCH WEEK 1
=========================================*/

.watchSection {
    padding: 100px 0;
    background: var(--cream);
}

.sectionHeading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sectionHeading h2 {
    font-size: 2.7rem;
    color: var(--navy);
    margin: 8px 0;
}

.sectionHeading h4 {
    font-size: 1.4rem;
    color: var(--gold);
    margin: 8px 0;
}

.sectionHeading p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

/*=========================
VIDEO GRID
=========================*/

.videoGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/*=========================
VIDEO CARD
=========================*/

.videoCard {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.videoCard:hover {
    transform: translateY(-8px);
}

/*=========================
THUMBNAIL
=========================*/

.videoThumbnail {
    height: 220px;
    background: linear-gradient(135deg,
            var(--navy),
            #35578F);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.childThumb {
    background: linear-gradient(135deg,
            var(--gold),
            var(--lightGold));
}

/*=========================
PLAY BUTTON
=========================*/

.playButton {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

.videoTime {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
}

/*=========================
CONTENT
=========================*/

.videoContent {
    padding: 35px;
}

.videoBadge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(184, 134, 11, .12);
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.videoContent h3 {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.videoContent p {
    color: var(--text);
    line-height: 1.8;
}

/*=========================
BUTTON
=========================*/

.watchButton {
    margin-top: 55px;
    text-align: center;
}

/*=========================================
STEP 3 - STARTER KIT
=========================================*/

.starterSection {
    padding: 100px 0;
    background: var(--white);
}

/*=========================
4 WEEK CARDS
=========================*/

.weekGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.weekCard {
    background: var(--cream);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: .35s ease;
    border: 1px solid rgba(184, 134, 11, .15);
}

.weekCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.weekNumber {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(184, 134, 11, .12);
    color: var(--gold);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.weekCard h3 {
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.5;
}

/*=========================
FEATURES
=========================*/

.starterFeatures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 60px;
}

.featureItem {
    background: var(--cream);
    padding: 18px 22px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 500;
}

/*=========================
DOWNLOAD CARD
=========================*/

.downloadCard {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg,
            var(--white),
            var(--cream));
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.downloadCard h3 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 15px;
}

.downloadCard p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 35px;
}

/*=========================
FORM
=========================*/

.starterForm {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.starterForm input {
    flex: 1;
    padding: 18px 22px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: .3s;
}

.starterForm input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, .12);
}

.starterForm button {
    white-space: nowrap;
    cursor: pointer;
}

.downloadCard small {
    display: block;
    color: #666;
    line-height: 1.7;
}

/*=========================================
FULL COURSE
=========================================*/

.courseSection {
    padding: 100px 0;
    background: var(--cream);
}

.courseCard {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;

    background: #FBF6E9;
    border: 1px solid rgba(184, 134, 11, .2);
    border-radius: 30px;
    padding: 60px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
}

.courseTag {

    display: inline-block;
    padding: 8px 18px;

    background: rgba(184, 134, 11, .12);

    color: var(--gold);

    border-radius: 40px;

    font-size: .9rem;

    font-weight: 600;

    margin-bottom: 20px;

}

.courseContent h2 {

    color: var(--navy);

    font-size: 2.5rem;

    margin-bottom: 20px;

}

.courseContent p {

    color: var(--text);

    line-height: 1.9;

    margin-bottom: 35px;

}

.courseFeatures {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-bottom: 40px;

}

.courseFeature {

    background: rgba(255, 255, 255, .75);

    padding: 16px 18px;

    border-radius: 12px;

    color: var(--text);

}

.courseVisual {

    display: flex;

    justify-content: center;

}

.courseMockup {

    width: 280px;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 25px 45px rgba(0, 0, 0, .1);

}

.mockupHeader {

    background: var(--navy);

    color: #fff;

    padding: 22px;

    text-align: center;

    font-weight: 700;

}

.mockupBody {

    padding: 45px 30px;

    text-align: center;

}

.mockupBody span {

    color: var(--gold);

    font-weight: 700;

}

.mockupBody h4 {

    color: var(--navy);

    margin: 15px 0;

}

.mockupBody p {

    margin: 0;

}

/*=========================================
WHAT COMES NEXT
=========================================*/

.journeySection {
    padding: 100px 0;
    background: var(--cream);
}

.journeyGrid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
    margin-top: 60px;
}

/*=========================
TIMELINE
=========================*/

.timelineCard {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.timelineItem {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timelineDot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ddd;
    margin-top: 8px;
    flex-shrink: 0;
}

.timelineItem.active .timelineDot {
    background: var(--gold);
}

.timelineItem h4 {
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.timelineItem p {
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.timelineLine {
    width: 2px;
    height: 45px;
    background: rgba(184, 134, 11, .35);
    margin: 10px 0 10px 8px;
}

.timelineLine.short {
    height: 25px;
}

.timelineEnd {
    margin-left: 32px;
    font-weight: 600;
    color: var(--gold);
}

/*=========================
RIGHT CARD
=========================*/

.journeyCard {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.journeyCard h3 {
    color: var(--navy);
    margin-bottom: 35px;
    font-size: 2rem;
}

.journeyFeature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.journeyFeature:last-of-type {
    border-bottom: none;
    margin-bottom: 35px;
    padding-bottom: 0;
}

.featureIcon {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, .12);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.journeyFeature h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.journeyFeature p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/*=========================
BUTTONS
=========================*/

.journeyButtons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.journeyButtons a {
    flex: 1;
    text-align: center;
}

/* ======================================
   BOOKS HERO
====================================== */

.booksHero {
    padding: 150px 20px 120px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.booksHero .sectionHeading {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.booksHero .sectionTag {
    margin-bottom: 20px;
}

.booksHero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    color: #1F3864;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.booksHero h1 span {
    color: #B8860B;
}

.booksHero p {
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    max-width: 720px;
    margin: auto;
}

.booksHero p:last-child {
    margin-bottom: 0;
}

.booksHero strong {
    color: var(--color-heading);
    font-weight: 600;
}

/* ======================================
   BOOK SECTION
====================================== */

.bookSection {
    padding: 100px 0;
}

.bookGrid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.bookGrid.reverse {
    grid-template-columns: 1fr 420px;
}

.bookGrid.reverse .bookContent {
    order: 1;
}

.bookGrid.reverse .bookImage {
    order: 2;
}

.bookImage img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.bookContent .sectionTag {
    margin-bottom: 18px;
}

.bookContent h2 {
    margin-bottom: 16px;
}

.bookContent h3 {
    margin-bottom: 14px;
}

.authors {
    margin-bottom: 28px;
    font-weight: 600;
    color: var(--color-primary);
}

.bookContent p {
    margin-bottom: 20px;
}

.bookContent p:last-child {
    margin-bottom: 0;
}

/* ======================================
   BOOK DETAILS
====================================== */

.bookDetails {
    padding-bottom: 100px;
}

.bookInfoCard {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, .06);
}

.bookInfoCard h3 {
    margin-bottom: 30px;
}

.bookContents {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.bookContents li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.bookContents li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.bookFormat {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.bookFormat h4 {
    margin-bottom: 14px;
}

.bookFormat p {
    margin-bottom: 12px;
}

.comingSoon {
    color: var(--color-text-light);
}

.bookButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 40px;
}

/* ======================================
   AUTHORS SECTION
====================================== */

.authorsSection {
    padding: 100px 0;
    background: var(--color-bg);
}

.authorsGrid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.authorsImage img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.authorsContent p {
    margin-bottom: 22px;
}

.authorsContent p:last-of-type {
    margin-bottom: 36px;
}

.foundationCard {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 32px;
}

.foundationCard h4 {
    margin-bottom: 14px;
}

.foundationCard p {
    margin: 0;
}

/* ======================================
   CONTACT SECTION
====================================== */

.contactSection {
    padding: 150px 20px 120px;
}

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contactContent h2 {
    margin: 12px 0 18px;
}

.contactContent p {
    margin-bottom: 16px;
}

.contactContent img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 24px;
    margin-top: 28px;
}

.contactFormWrapper {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.formGroup {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.formGroup>div {
    flex: 1;
}

.formGroup:last-child {
    margin-bottom: 0;
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: 0.3s ease;
    font: inherit;
}

.formGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.formGroup small {
    display: flex;
    align-items: center;
    opacity: 0.7;
    margin-top: -6px;
    justify-content: flex-start;
    font-size: 14px;
}

.contactFormWrapper .primaryBtn {
    margin-top: 10px;
}

/* ======================================
   FAQ SECTION
====================================== */

.faqSection {
    padding: 100px 0 120px;
    background: var(--color-bg);
}

.faqContainer {
    max-width: 900px;
    margin: 60px auto 0;
}

.faqItem {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.faqItem summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 70px 24px 28px;
    position: relative;
    font-weight: 600;
    user-select: none;
}

.faqItem summary::-webkit-details-marker {
    display: none;
}

.faqItem summary::after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 400;
    transition: 0.3s ease;
}

.faqItem[open] summary::after {
    content: "−";
}

.faqItem p {
    padding: 0 28px 28px;
    margin: 0;
}

.faqItem:last-child {
    margin-bottom: 0;
}

/* ======================================
CONTACT PAGE
====================================== */

.contactHero,
.contactFormSection,
.contactFaqSection,
.connectSection,
.mediaPressSection {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.contactHero {
    padding-top: 170px;
    padding-bottom: 130px;
    background: var(--bg-primary);
}


/* ======================================
SECTION HEADINGS
====================================== */

.contactFormSection .sectionHeading,
.contactFaqSection .sectionHeading,
.connectSection .sectionHeading,
.mediaPressSection .sectionHeading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}


/* ======================================
HERO
====================================== */

.contactHeroContent {
    position: relative;
    z-index: 5;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contactHeroContent h1 {
    margin: 18px 0 28px;
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    color: #1F3864;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.contactHeroContent .heroIntro {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    max-width: 720px;
    margin: auto;
}


/* ======================================
DECORATIVE CIRCLES
====================================== */

.heroCircle {
    position: absolute;
    border-radius: 50%;
    background: rgba(201, 164, 92, .08);
    filter: blur(2px);
}

.heroCircleOne {
    width: 340px;
    height: 340px;
    top: -90px;
    left: -100px;
}

.heroCircleTwo {
    width: 280px;
    height: 280px;
    right: 0px;
    bottom: -70px;
}


/* ======================================
BOTANICAL DECORATION
====================================== */

.heroLeaf {
    position: absolute;
    color: rgba(181, 147, 78, .22);
    z-index: 1;
}

.heroLeaf svg {
    width: 150px;
    height: auto;
    display: block;
}

.heroLeafLeft {
    left: 60px;
    bottom: 45px;
}

.heroLeafRight {
    right: 60px;
    top: 70px;
}

/* ======================================
CONTACT FORM
====================================== */

/* .contactFormWrapper{
    max-width: 820px;
    margin: 0 auto;
} */

.contactForm {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 32px;
    padding: 55px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.contactFormWrapper {
    padding: 30px;
    border-radius: 24px;
}

.formGroup:last-of-type {
    margin-bottom: 36px;
}

.formGroup label {
    margin-bottom: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 16px;
    outline: none;
    transition: all .3s ease;
}

.formGroup textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.8;
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
    color: #9b9b9b;
}

.formGroup select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23777777' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 52px;
}

.formGroup input:focus,
.formGroup textarea:focus,
.formGroup select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201, 164, 92, .15);
}

.formButton {
    text-align: center;
}

.formButton .primaryBtn {
    min-width: 220px;
}

/* ======================================
FREQUENTLY ASKED QUESTIONS
====================================== */

.faqWrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faqItem {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: all .35s ease;
}

.faqItem+.faqItem {
    margin-top: 20px;
}

.faqItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.faqItem summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
}

.faqItem summary::-webkit-details-marker {
    display: none;
}

.faqItem summary span:first-child {
    font-size: 1.08rem;
    line-height: 1.6;
}

/* ======================================
OTHER WAYS TO CONNECT
====================================== */

.connectGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.connectCard {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .04);
    transition: all .35s ease;
}

.connectCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .08);
}

.connectIcon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(201, 164, 92, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.connectCard h3 {
    margin-bottom: 16px;
}

.connectCard p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.85;
}


/* ======================================
MEDIA & PRESS
====================================== */

.pressFactsCard {
    background: var(--white);
    padding: 55px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .05);
    margin-bottom: 80px;
}

.pressFactsCard h3 {
    text-align: center;
    margin-bottom: 45px;
}

.pressFactsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.factItem {
    padding: 24px;
    background: #faf8f3;
    border-radius: 20px;
}

.factLabel {
    display: inline-block;
    margin-bottom: 10px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.factItem p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}


/* ======================================
CLOSING QUOTE
====================================== */

.closingQuote {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.closingQuote blockquote {
    margin: 0 0 28px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.35;
    font-weight: 500;
    color: var(--text-primary);
}

.quoteAuthor p {
    margin-bottom: 8px;
}

.quoteAuthor span {
    color: var(--text-secondary);
    font-size: .95rem;
}

/*==================================
    EDUCATIONAL ALIGNMENT STRIP
==================================*/

.alignment-strip {
    margin-top: 40px;
    padding: 14px 22px;
    background: rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    max-width: max-content;
}

.alignment-strip p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .92);
    max-width: 100%;
}

.alignment-strip strong {
    color: #D7B45B;
    font-weight: 500;
}

.alignment-strip a {
    display: inline-block;
    margin-top: 8px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.alignment-strip a:hover {
    color: #fff;
}

/*======================================
    COMMUNITY HERO
======================================*/

.communityHero {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

.communityHeroContent {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.communityHeroContent h1 {
    margin: 14px 0 28px;
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1F3864;
}

.communityHeroContent h1 span {
    color: #B8860B;
}

/* Hero Intro */

.communityHeroContent .heroIntro {
    max-width: 720px;
    margin: 40px auto 0;
    text-align: center;
}

.communityHeroContent .heroIntro p {
    margin-bottom: 8px;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: #555;
}

.communityHeroContent .heroIntro p:last-child {
    margin-bottom: 0;
}

/* Highlight sentence */

.communityHeroContent .heroIntro p:nth-child(2) {
    margin: 18px 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-heading);
}

.communityHeroContent .heroIntro strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Buttons */

.heroButtons {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 45px;
}

/*======================================
    COMMUNITY PURPOSE
======================================*/

.communityPurpose {
    padding: 120px 0;
    background: #FFFDF8;
}

.communityPurpose .sectionHeading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.purposeGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.purposeCard {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .05);
}

.purposeCard h3 {
    margin-bottom: 22px;
}

.purposeCard p {
    margin-bottom: 20px;
}

.purposeCard ul {
    margin: 24px 0;
    padding-left: 22px;
}

.purposeCard li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.gapCard {
    border-top: 6px solid #D9534F;
}

.bridgeCard {
    border-top: 6px solid var(--color-primary);
}

.highlightText {
    margin-top: 30px;
    font-weight: 700;
    color: #D9534F;
}

.bridgeQuote {
    margin-top: 35px;
    padding: 22px;
    background: rgba(184, 134, 11, .08);
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
    font-family: Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-heading);
}

/*======================================
        COMMUNITY ROLES
======================================*/

.communityRoles {
    padding: 120px 0;
}

.rolesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.roleCard {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    border-top: 6px solid;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    transition: .35s;
}

.roleCard:hover {
    transform: translateY(-8px);
}

.roleCard.navy {
    border-color: #1F3864;
}

.roleCard.green {
    border-color: #3F8F63;
}

.roleCard.teal {
    border-color: #1B9AAA;
}

.roleCard.gold {
    border-color: #C49A2A;
}

.roleNumber {
    display: inline-block;
    margin-bottom: 16px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}

.roleCard h3 {
    margin-bottom: 26px;
}

.roleInfo h4 {
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1rem;
}

.roleInfo p {
    margin-bottom: 18px;
}

.textLink {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-primary);
    transition: .3s;
}

.textLink:hover {
    color: var(--color-heading);
}

/*======================================
        MATCHING PROCESS
======================================*/

.matchingProcess {
    padding: 120px 0;
    background: var(--bg-primary);
}

.processGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.processCard {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
    transition: .35s;
}

.processCard:hover {
    transform: translateY(-8px);
}

.stepNumber {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.processCard h3 {
    margin-bottom: 16px;
}

.processCard p {
    margin-bottom: 20px;
}

.processCard ul {
    padding-left: 20px;
}

.processCard li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/*======================================
        REGISTRATION
======================================*/

.registrationSection {
    padding: 120px 0;
}

.registrationGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.registrationCard {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.registrationCard h3 {
    margin-bottom: 30px;
}

.registrationCard form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.registrationCard input,
.registrationCard select,
.registrationCard textarea {

    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    font: inherit;
    background: #fff;
    transition: .3s;
}

.registrationCard textarea {
    resize: vertical;
    min-height: 120px;
}

.registrationCard input:focus,
.registrationCard select:focus,
.registrationCard textarea:focus {

    outline: none;
    border-color: var(--color-primary);

}

.registrationCard button {
    margin-top: 10px;
}

/*======================================
        TRAINING MODULE
======================================*/

.trainingModule {
    padding: 120px 0;
    background: var(--bg-primary);
}

.trainingCard {
    max-width: 1000px;
    margin: auto;
    padding: 50px;
    background: #fff;
    border: 2px solid #D8B04C;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.trainingCard h2 {
    margin: 18px 0 24px;
}

.trainingCard h2 span {
    color: var(--color-primary);
}

.trainingIntro {
    max-width: 720px;
    margin-bottom: 40px;
}

.trainingGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    margin-bottom: 40px;
}

.trainingItem {
    padding: 18px 20px;
    border-radius: 14px;
    background: #FFF9EB;
    line-height: 1.5;
}

.trainingFooter {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trainingFooter p {
    margin: 0;
}

/*======================================
    SINGLE PARENT COMMUNITY
======================================*/

.singleParentCommunity {
    padding: 120px 0;
    background: #FFF8E8;
}

.singleParentGrid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.singleParentContent h2 {
    margin: 18px 0 24px;
}

.singleParentContent h2 span {
    color: var(--color-primary);
}

.singleParentContent p {
    margin-bottom: 20px;
}

.communityBenefits {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.communityBenefits li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.communityBenefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.singleParentImage img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

/*======================================
        BRAND IDENTITY
======================================*/

.brandIdentity {
    padding: 120px 0;
    background: var(--bg-primary);
}

.identityCard {
    max-width: 1100px;
    margin: auto;
    padding: 60px;
    text-align: center;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.identityCard h2 {
    margin: 18px 0 50px;
}

.identityCard h2 span {
    color: var(--color-primary);
}

.identityGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.identityItem {
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
}

.identityItem h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.identityQuote {
    max-width: 720px;
    margin: 0 auto 40px;
    font-style: italic;
    font-size: 1.15rem;
}

.identityLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.identityLinks a {
    padding: 10px 20px;
    border-radius: 50px;
    background: #FFF8E8;
    color: var(--color-primary);
    font-weight: 600;
    transition: .3s;
}

.identityLinks a:hover {
    background: var(--color-primary);
    color: #fff;
}

.identityFooter {
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding-top: 30px;
}

.identityFooter p {
    margin-bottom: 10px;
}

.identityFooter p:last-child {
    margin-bottom: 0;
}

/*======================================
    INSTITUTIONAL HERO
======================================*/

.institutionHero {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

.institutionHeroContent {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.institutionHeroContent h1 {
    margin: 14px 0 28px;
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-heading);
}

.institutionHeroContent h1 span {
    color: var(--color-primary);
}

.institutionHeroContent .heroIntro {
    max-width: 760px;
    margin: 40px auto 0;
}

.institutionHeroContent .heroIntro p {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.institutionHeroContent .heroIntro p:last-child {
    margin-bottom: 0;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-heading);
}

.institutionHeroContent .heroIntro strong {
    color: var(--color-primary);
    font-weight: 600;
}

.institutionHeroContent .heroButtons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 45px;
}

/*======================================
        WHO THIS PAGE IS FOR
======================================*/

.institutionAudience {
    padding: 120px 0;
}

.audienceGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.audienceCard {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.audienceCard:hover {
    transform: translateY(-6px);
}

.audienceCard h3 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.audienceCard p {
    margin: 0;
    line-height: 1.8;
}

.fullWidth {
    grid-column: 1 / -1;
}

/*======================================
    PARTNERSHIP FEATURES
======================================*/

.partnershipIncludes {
    padding: 120px 0;
    background: var(--bg-primary);
}

.featureGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.featureCard {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.featureCard:hover {
    transform: translateY(-6px);
}

.featureCard h3 {
    margin-bottom: 18px;
    color: var(--color-primary);
}

.featureCard p {
    margin: 0;
    line-height: 1.8;
}

/*======================================
    INSTITUTIONAL SESSION
======================================*/

.institutionSession {
    padding: 120px 0;
}

.sessionTimeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.sessionStep {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.sessionStep:hover {
    transform: translateY(-6px);
}

.time {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(184, 134, 11, .12);
    color: var(--color-primary);
    font-weight: 700;
    font-size: .9rem;
}

.sessionStep h3 {
    margin-bottom: 14px;
}

.sessionStep p {
    margin: 0;
    line-height: 1.8;
}

/*======================================
    PLACEMENT TRANSITION
======================================*/

.placementTransition {
    padding: 120px 0;
    background: var(--bg-primary);
}

.transitionCard {
    max-width: 950px;
    margin: 60px auto 0;
    padding: 45px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.transitionStep {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.transitionStep:last-of-type {
    border-bottom: none;
}

.transitionStep span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.transitionStep h3 {
    margin-bottom: 10px;
}

.transitionStep p {
    margin: 0;
    line-height: 1.8;
}

.transitionHighlight {
    margin-top: 35px;
    padding: 22px;
    border-left: 5px solid var(--color-primary);
    background: #FFF8E8;
    border-radius: 14px;
    text-align: center;
    font-size: 1.1rem;
}

/*======================================
        SAFEGUARDING
======================================*/

.safeguardingSection {
    padding: 120px 0;
}

.safeguardingCard {
    margin-top: 60px;
    padding: 50px;
    background: #1F3864;
    border-radius: 24px;
    color: #fff;
}

.safeguardingCard h3 {
    color: #fff;
    margin-bottom: 35px;
}

.safeguardingGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.safeItem {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px;
}

.safeItem h4 {
    margin-bottom: 12px;
    color: #F4C542;
}

.safeItem p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
}

.safeStatement {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
}

.safeStatement p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .9);
}

.safeStatement h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.4;
}

.safeStatement span {
    color: #F4C542;
}

/*======================================
    INSTITUTION REGISTRATION
======================================*/

.institutionRegistration {
    padding: 120px 0;
    background: var(--bg-primary);
}

.registrationWrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.institutionForm {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.formRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.formGroup {
    display: flex;
    flex-direction: column;
}

.formGroup label {
    margin-bottom: 8px;
    font-weight: 600;
}

.formGroup input,
.formGroup select,
.formGroup textarea {

    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    font: inherit;
    transition: .3s;
}

.formGroup textarea {
    resize: vertical;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {

    outline: none;
    border-color: var(--color-primary);

}

.institutionForm button {
    margin-top: 20px;
}

.registrationNote {
    margin-top: 35px;
    text-align: center;
}

.registrationNote p {
    margin-bottom: 10px;
}

.registrationNote p:last-child {
    margin-bottom: 0;
}

/*======================================
        INSTITUTION CTA
======================================*/

.institutionCTA {
    padding: 100px 0 120px;
    background: var(--bg-primary);
}

.ctaCard {
    max-width: 900px;
    margin: auto;
    padding: 60px 50px;
    text-align: center;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .06);
}

.ctaCard h2 {
    margin: 18px 0 24px;
}

.ctaCard h2 span {
    color: var(--color-primary);
}

.ctaCard p {
    max-width: 650px;
    margin: 0 auto 35px;
}

.ctaButtons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.ctaCard small {
    display: block;
    color: #666;
    line-height: 1.7;
}

.ctaCard strong {
    color: var(--color-primary);
}

/*======================================
            PTA HERO
======================================*/

.ptaHero {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

.ptaHeroContent {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.ptaHeroContent h1 {
    margin: 14px 0 28px;
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-heading);
}

.ptaHeroContent h1 span {
    color: var(--color-primary);
}

.ptaHeroContent .heroIntro {
    max-width: 760px;
    margin: 40px auto 0;
}

.ptaHeroContent .heroIntro p {
    margin-bottom: 18px;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.ptaHeroContent .heroIntro p:last-child {
    margin-bottom: 0;
}

.ptaHeroContent .heroIntro strong {
    color: var(--color-primary);
    font-weight: 600;
}

.ptaHeroContent .heroButtons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 45px;
}

/*======================================
        PTA IMPORTANCE
======================================*/

.ptaImportance {
    padding: 120px 0;
    background: #FFFDF8;
}

.importanceGrid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.importanceCard {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.importanceCard h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.importanceCard p {
    margin-bottom: 18px;
}

.importanceCard p:last-of-type {
    margin-bottom: 0;
}

.importanceQuote {
    margin-top: 30px;
    padding: 20px;
    background: #FFF7E5;
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-heading);
}

/*======================================
        PTA ROLES
======================================*/

.ptaRoles {
    padding: 120px 0;
}

.ptaRolesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.ptaRoleCard {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    border-top: 6px solid;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    transition: .35s ease;
}

.ptaRoleCard:hover {
    transform: translateY(-8px);
}

.ptaRoleCard.navy {
    border-color: #1F3864;
}

.ptaRoleCard.green {
    border-color: #3F8F63;
}

.ptaRoleCard.teal {
    border-color: #1B9AAA;
}

.ptaRoleCard.gold {
    border-color: #C49A2A;
}

.roleNumber {
    display: inline-block;
    margin-bottom: 18px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
}

.ptaRoleCard h3 {
    margin-bottom: 18px;
}

.ptaRoleCard p {
    margin-bottom: 20px;
}

.ptaRoleCard ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.ptaRoleCard li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.textLink {
    font-weight: 700;
    color: var(--color-primary);
    transition: .3s;
}

.textLink:hover {
    color: var(--color-heading);
}

/*======================================
        SCHOOL LEVELS
======================================*/

.schoolLevels {
    padding: 120px 0;
    background: var(--bg-primary);
}

.levelAccordion {
    max-width: 950px;
    margin: 60px auto 0;
}

.levelItem {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: hidden;
}

.levelItem summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 26px 70px 26px 28px;
    font-weight: 700;
}

.levelItem summary::-webkit-details-marker {
    display: none;
}

.levelItem summary span {
    display: block;
    margin-top: 8px;
    font-size: .95rem;
    font-weight: 400;
    color: #777;
}

.levelItem summary::after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--color-primary);
}

.levelItem[open] summary::after {
    content: "−";
}

.levelContent {
    padding: 0 28px 28px;
}

.levelContent h4 {
    margin: 20px 0 10px;
    color: var(--color-primary);
}

.levelContent p {
    margin: 0 0 16px;
    line-height: 1.8;
}

/*======================================
        PTA STARTER PACK
======================================*/

.starterPack {
    padding: 120px 0;
}

.starterCard {
    max-width: 1000px;
    margin: auto;
    padding: 50px;
    background: #fff;
    border: 2px solid #D8B04C;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.starterCard h2 {
    margin: 18px 0 24px;
}

.starterCard h2 span {
    color: var(--color-primary);
}

.starterIntro {
    max-width: 650px;
    margin: 0 auto 40px;
}

.starterGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.starterItem {
    padding: 22px;
    background: #FFF9EB;
    border-radius: 16px;
    text-align: left;
}

.starterItem h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.starterItem p {
    margin: 0;
    line-height: 1.7;
}

/*======================================
        PTA REGISTRATION
======================================*/

.ptaRegistration {
    padding: 120px 0;
    background: var(--bg-primary);
}

.registrationWrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.ptaForm {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.formRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.formGroup {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.formGroup label {
    margin-bottom: 8px;
    font-weight: 600;
}

.formGroup input,
.formGroup textarea {
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    font: inherit;
}

.formGroup input:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.formGroup textarea {
    resize: vertical;
}

.checkboxGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkboxItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
}

.checkboxItem input {
    width: auto;
    margin-top: 3px;
}

.ptaForm button {
    margin-top: 10px;
}

.registrationNote {
    margin-top: 35px;
    text-align: center;
}

.registrationNote p {
    margin-bottom: 10px;
}

/*======================================
        PTA CLOSING CTA
======================================*/

.ptaCTA {
    padding: 100px 0 120px;
    background: var(--bg-primary);
}

.ptaCTA .ctaCard {
    max-width: 900px;
    margin: auto;
    padding: 60px 50px;
    text-align: center;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .06);
}

.ptaCTA h2 {
    margin: 18px 0 24px;
}

.ptaCTA h2 span {
    color: var(--color-primary);
}

.ptaCTA p {
    max-width: 650px;
    margin: 0 auto 18px;
}

.ptaCTA strong {
    color: var(--color-primary);
}

.relatedLinks {
    margin: 40px 0 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.relatedLinks a {
    color: var(--color-primary);
    font-weight: 600;
    transition: .3s;
}

.relatedLinks a:hover {
    color: var(--color-heading);
}

.relatedLinks span {
    color: #999;
}

.ctaFooter {
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding-top: 25px;
}

.ctaFooter p {
    margin-bottom: 10px;
}

.ctaFooter p:last-child {
    margin-bottom: 0;
}

/*======================================
        SCHOOLS HERO
======================================*/

.schoolsHero {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-primary);
    overflow: hidden;
}

.schoolsHeroContent {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.schoolsHeroContent h1 {
    margin: 14px 0 28px;
    font-family: Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-heading);
}

.schoolsHeroContent h1 span {
    color: var(--color-primary);
}

.schoolsHeroContent .heroIntro {
    max-width: 760px;
    margin: 40px auto 0;
}

.schoolsHeroContent .heroIntro p {
    margin-bottom: 20px;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.schoolsHeroContent .heroIntro p:last-child {
    margin-bottom: 0;
}

.schoolsHeroContent strong {
    color: var(--color-primary);
}

.schoolsHeroContent .heroButtons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 45px;
}

/*======================================
    CURRICULUM ALIGNMENT
======================================*/

.alignmentSection {
    padding: 120px 0;
}

.tableWrapper {
    margin-top: 60px;
    overflow-x: auto;
}

.alignmentTable {
    width: 100%;
    border-collapse: collapse;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.alignmentTable thead {
    background: #1F3864;
}

.alignmentTable th {
    padding: 22px 24px;
    text-align: left;
    color: #fff;
    font-weight: 700;
}

.alignmentTable td {
    padding: 22px 24px;
    vertical-align: top;
    line-height: 1.8;
}

.alignmentTable tbody tr:nth-child(even) {
    background: #FFF8E8;
}

.alignmentTable tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.alignmentTable tbody tr:last-child {
    border-bottom: none;
}

.alignmentTable strong {
    color: var(--color-heading);
}

.alignmentInfo {
    margin-top: 50px;
    padding: 35px;
    background: #FFFDF6;
    border-left: 5px solid var(--color-primary);
    border-radius: 18px;
}

.alignmentInfo h3 {
    margin-bottom: 22px;
}

.alignmentInfo ul {
    margin: 0;
    padding-left: 22px;
}

.alignmentInfo li {
    margin-bottom: 16px;
    line-height: 1.8;
}

.alignmentInfo li:last-child {
    margin-bottom: 0;
}

/*======================================
    ALIGNMENT DOWNLOADS
======================================*/

.alignmentDownloads {
    padding: 120px 0;
    background: var(--bg-primary);
}

.downloadGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.downloadCard {
    background: #FFF8E8;
    border: 1px solid rgba(184, 134, 11, .18);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: .35s ease;
}

.downloadCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.downloadCard h3 {
    margin-bottom: 18px;
    color: #1F3864;
    line-height: 1.4;
}

.downloadCard p {
    margin-bottom: 28px;
    font-style: italic;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.downloadCard .primaryBtn {
    align-self: flex-start;
}

/*======================================
    IMPLEMENTATION MODELS
======================================*/

.implementationModels {
    padding: 120px 0;
}

.modelsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.modelCard {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    border-top: 6px solid;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    transition: .35s ease;
}

.modelCard:hover {
    transform: translateY(-8px);
}

.modelCard.green {
    border-color: #4CAF50;
}

.modelCard.navy {
    border-color: #1F3864;
}

.modelCard.purple {
    border-color: #6C4AB6;
}

.modelNumber {
    display: inline-block;
    margin-bottom: 16px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
}

.modelCard h3 {
    margin-bottom: 8px;
}

.modelCard small {
    display: block;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-style: italic;
    font-weight: 600;
}

.modelCard p {
    margin-bottom: 20px;
}

.modelCard ul {
    padding-left: 20px;
    margin: 0;
}

.modelCard li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.modelCard li:last-child {
    margin-bottom: 0;
}

/*======================================
    IDEA NOTEBOOK
======================================*/

.ideaNotebook {
    padding: 120px 0;
    background: var(--bg-primary);
}

.ideaGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
}

.ideaContent h2 {
    margin: 18px 0 24px;
}

.ideaContent h2 span {
    color: var(--color-primary);
}

.ideaContent p {
    margin-bottom: 20px;
}

.ideaCard {
    background: #fff;
    padding: 38px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.ideaCard h3 {
    margin-bottom: 24px;
    color: var(--color-primary);
}

.ideaCard ul {
    margin: 0;
    padding-left: 22px;
}

.ideaCard li {
    margin-bottom: 16px;
    line-height: 1.8;
}

.ideaCard li:last-child {
    margin-bottom: 0;
}

.portfolioHighlight {
    margin-top: 60px;
    padding: 35px;
    background: #FFF8E8;
    border-left: 5px solid var(--color-primary);
    border-radius: 18px;
}

.portfolioHighlight h3 {
    margin-bottom: 18px;
}

.portfolioHighlight p {
    margin: 0;
}

.portfolioHighlight strong {
    color: var(--color-primary);
}

/*======================================
    SCHOOL PARTNERSHIP
======================================*/

.schoolPartnership {
    padding: 120px 0;
}

.partnershipCard {
    max-width: 1100px;
    margin: auto;
    padding: 55px;
    border: 2px solid #D4AF37;
    border-radius: 28px;
    background: #FFFDF8;
    text-align: center;
}

.partnershipCard h2 {
    margin: 18px 0 22px;
}

.partnershipCard h2 span {
    color: var(--color-primary);
}

.partnershipIntro {
    max-width: 650px;
    margin: 0 auto 45px;
}

.partnershipGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.partnerItem {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .06);
}

.partnerItem h3 {
    margin-bottom: 14px;
    color: var(--color-primary);
}

.partnerItem p {
    margin: 0;
}

.partnershipButtons {
    margin-bottom: 24px;
}

.partnershipCard small {
    color: #666;
    margin-bottom: 90px;
}

.partnershipCard strong {
    color: var(--color-primary);
}

/*======================================
        ABOUT PROGRAMME
======================================*/

.aboutProgramme {
    padding: 120px 0;
    background: var(--bg-primary);
}

.programmeGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.programmeContent h2 {
    margin: 18px 0 24px;
}

.programmeContent h2 span {
    color: var(--color-primary);
}

.programmeContent p {
    margin-bottom: 20px;
}

.programmeCard {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.programmeCard h3 {
    margin-bottom: 22px;
    color: var(--color-primary);
}

.programmeCard ul {
    margin: 0 0 35px;
    padding-left: 22px;
}

.programmeCard li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.programmeTimeline {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.programmeTimeline p {
    margin-bottom: 18px;
}

.programmeTimeline p:last-child {
    margin-bottom: 0;
}

/*======================================
        COMPLETE IDENTITY
======================================*/

.completeIdentity {
    padding: 120px 0;
    background: var(--bg-primary);
}

.identityCard {
    max-width: 1000px;
    margin: auto;
    padding: 60px;
    background: #fff;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.identityCard h2 {
    margin: 18px 0 20px;
}

.identityCard h2 span {
    color: var(--color-primary);
}

.identityIntro {
    max-width: 650px;
    margin: 0 auto 50px;
    font-style: italic;
}

.identityGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.identityItem {
    padding: 28px;
    border-radius: 18px;
    background: #FFF8E8;
}

.identityItem h3 {
    margin-bottom: 14px;
    color: var(--color-primary);
}

.identityItem p {
    margin: 0;
}

.identityCard blockquote {
    margin: 0 auto 45px;
    max-width: 650px;
    font-family: Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.6;
    color: var(--color-heading);
    font-style: italic;
}

.identityFooter {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.identityFooter p {
    margin-bottom: 10px;
}

.identityFooter p:last-child {
    margin-bottom: 0;
    color: #666;
}

/*======================================
        READ MORE (DESKTOP)
======================================*/

.roleExtra {
    display: none;
    margin-top: 24px;
    animation: fadeIn .35s ease;
}

.roleExtra.show {
    display: block;
}

.roleExtra h4 {
    margin: 24px 0 14px;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
}

.roleExtra ul {
    margin: 0 0 24px;
    padding-left: 22px;
}

.roleExtra li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.cardFooter {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.readMoreBtn {
    display: block;
    background: none;
    border: none;
    padding: 0;

    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);

    cursor: pointer;
    transition: .3s ease;
}

.readMoreBtn:hover {
    color: var(--color-heading);
    transform: translateX(3px);
}

.textLink {
    font-weight: 700;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Spacing above download buttons in Community and Institutional pages */
.communityPurpose .ctaButtons,
.partnershipIncludes .ctaButtons {
    margin-top: clamp(25px, 4vw, 40px);
}