:root {
    --Color-System-color-System-800: #222424;
    --Color-System-color-System-600: #535555;
    --Color-System-color-System-300: #CCCDCD;
    --Color-System-color-System-200: #E1E1E1;
    --Color-System-color-System-50: #FFF;
    --Color-Primary-Primary-800: #BF7805;
    --Color-Primary-Primary-600: #FEC100;
    --Color-Primary-Primary-300: #FFE699;
    --Color-Primary-Primary-100: #FFF9E5;
    --Color-Case-Donations: #E4786B;
    --Color-Case-Tips: #6B93E4;
    --System-S800: #222424;
    --System-S600: #535555;
    --primary-color: --Color-System-color-System-800;
    --secondary-color: --Color-System-color-System-600;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --container-width: 90rem;
    --background-color: #F8F4EC;
    --background-color-secondary: #F2F3F5;
    --background-color-footer: #652815;
    --background-color-footer-copiright: #5B1F0D;
    --text-color: var(--Color-System-color-System-800);
}
/* START: Bootstrap overrides  */
.btn-primary {
    --bs-btn-color: #222424 !important;
    --bs-btn-bg: #FEC100 !important;
    --bs-btn-border-color: #FEC100 !important;
    --bs-btn-hover-color: #222424 !important;
    --bs-btn-hover-bg: #BF7805 !important;
    --bs-btn-hover-border-color: #BF7805 !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #222424 !important;
    --bs-btn-active-bg: #v;
    --bs-btn-active-border-color: #FEC100 !important;
    --bs-btn-disabled-bg: #FFE699 !important;
    --bs-btn-disabled-border-color: #FFE699 !important;
}
.btn-outline-primary {
    --bs-btn-color: #222424 !important;
    --bs-btn-border-color: #FEC100 !important;
    --bs-btn-hover-color: #222424 !important;
    --bs-btn-hover-bg: #BF7805 !important;
    --bs-btn-hover-border-color: #BF7805 !important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #222424;
    --bs-btn-active-bg: #FEC100 !important;
    --bs-btn-active-border-color: #FEC100 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #FEC100 !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #FEC100 !important;
    --bs-gradient: none;
}
/* END: Bootstrap overrides  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contain horizontal overflow from scroll-reveal animations (e.g. .slide-right's
   translateX), which would otherwise create a horizontal scrollbar and expose a
   gap on the right. Both html and body are needed because of root->viewport overflow
   propagation. `clip` (not `hidden`) avoids establishing a scroll container, so it
   preserves position: sticky descendants and normal vertical scrolling. */
html,
body {
    overflow-x: clip;
}
body {
    font-family: "Outfit", serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(137deg, #F8F4EC 29.93%, #F2F3F5 94.37%);
}
.header:has(.sandwich.opened) {
    height: 100vh;
}
.header:has(.sandwich.opened) .nav {
    background: #FFF;
    height: calc(100vh - 1rem);
    border-radius: .75rem;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0rem;
}
.container.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .container {
        padding: 0 1rem;
    }
}
/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 4.5rem;
}

.header .nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #ffffff;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.header.scroll-down .nav {
    box-shadow: 0 .125rem .5rem rgba(0, 0, 0, 0.08);
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .header {
        padding: .5rem;
    }
    .header .nav {
        border-radius: .75rem;
        padding: .75rem 1rem;
    }
    .header .container {
        padding: 0;
    }
}
.nav {
    padding: 0;
}
.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
@media only screen and (max-width:1439.0619rem) {
    main {
        padding: 0 1rem;
    }
}
/* Buttons */
/* Primary */
.primary-button {
    display: flex;
    padding: .75rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
    border: 0;
    background: linear-gradient(to top, rgba(243, 217, 134, 0.24), #FEC100);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 -1px 6px 1px rgba(255, 255, 255, 0.88);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    color: var(--Color-System-color-System-800);
    text-decoration: none;
    cursor: pointer;
    font-family: Outfit;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    text-align: center;
}
.primary-button:hover {
    background: linear-gradient(to top, rgba(243, 217, 134, 0.24), #BF7805);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 -1px 6px 1px rgba(255, 255, 255, 0.6);
}
/* Primary Transparent */
.primary-button-transparent {
    display: flex;
    padding: .75rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
    border: .0625rem solid rgba(254, 193, 0, 0.88);
    background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.25));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 -1px 6px 2px rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--Color-System-color-System-800);
    text-decoration: none;
    cursor: pointer;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    text-align: center;
}
.primary-button-transparent:hover {
    border-color: #FEC100;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 -1px 6px 2px rgba(255, 255, 255, 0.6);
}
/* Buttons mods */
.primary-button.wide,
.primary-button-transparent.wide {
    min-width: 22rem;
    width: 22rem;
 }
 .primary-button.fit,
 .primary-button-transparent.fit {
     width: 100%;
  }
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .primary-button.wide {
        min-width: 15rem;
        width: 15rem;
    }
}
.primary-button.stretch {
   min-width: 100%;
}
.nav-menu-cnt {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-bottom: 0;
}
.nav-menu a {
    text-decoration: none;
    color: var(--Color-System-color-System-600);
    transition: color 0.3s ease, font-weight 0.3s ease;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: left;
}
.nav-menu a:active, .nav-menu a:hover, .nav-menu a.active {
    color: var(--Color-System-color-System-800);
    font-weight: 500;
}
.nav-menu .submenu > a::after {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('../images/icon-arrow-right.svg');
    display: inline-block;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}
.nav-menu .submenu .submenu-cnt{
    position: relative;
    display: none;
}
.nav-menu .submenu .submenu-cnt .submenu-items {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: .5rem;
    position: absolute;
    background: #FFFFFF;
    border: .0625rem solid #BF7805;
    border-radius: 1rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.1);
    padding: .5rem 1rem;
    gap: .2rem;
    margin-top: -0.3rem;
    margin-left: -0.4rem;
}
.nav-menu .submenu-cnt .submenu-items a {
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    border-bottom: 0;
    padding: .5rem 1rem;
    align-self: stretch;
}
.nav-menu .submenu-cnt .submenu-items a:hover,
.nav-menu .submenu-cnt .submenu-items a.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #FFECB2;
    border-radius: 1rem;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.nav-menu .submenu:hover a::after {
    transform: rotate(0deg);
}
.nav-menu .submenu:hover .submenu-cnt {
    display: block;
}
.nav-menu--right {
    display: flex;
    list-style: none;
    gap: 2rem;
}
@media only screen and (min-width: 81.251rem) {
    .nav-menu--right {
        width: 214px;
        justify-content: right;
        margin-bottom: 0;
    }
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .nav-menu-cnt {
        position: absolute;
        padding-left: 1rem;
        top: 5rem;
        left: 0;
        width: 100%;
        max-height: calc(100VH - 5.625rem);
        justify-content: flex-start;
        flex-direction: column;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.1);
    }
    .nav-menu {
        margin-top: 1rem;
        gap: .5rem;
        width: calc(100% - 2rem);
        padding: .5rem;
    }
    .nav-menu-cnt .sandwich {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.375rem;
        height: 1.75rem;
        cursor: pointer;
        padding: .3125rem;
        display: flex;
        position: fixed;
        right: 1.25rem;
        top: 1.25rem;
        padding: .5rem;
    }
    .nav-menu-cnt .sandwich span {
        display: block;
        width: 100%;
        height: .125rem;
        background-color: #333;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    .nav-menu-cnt .sandwich.opened span:nth-child(1) {
        transform: translateY(.3125rem) rotate(45deg);
    }
    .nav-menu-cnt .sandwich.opened span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    .nav-menu-cnt .sandwich.opened span:nth-child(3) {
        transform: translateY(-0.3125rem) rotate(-45deg);
    }
    .nav-menu li > a {
        font-weight: 500;
    }
    .nav-menu .submenu > a::after {
        background-image: none;
    }
    .nav-menu, .nav-menu-right {
        flex-direction: column;
    }
    .nav-menu .submenu-cnt  {
        position: relative !important;
        display: block !important;
    }
    .nav-menu .submenu-cnt .submenu-items {
        position: relative !important;
        border: none !important;
        background: none !important;
        box-shadow: none !important;
        padding: .5rem !important;
    }
    .nav-menu .submenu-cnt .submenu-items a:before {
        content: '';
        width: 1.5rem;
        height: 1.5rem;
        background-image: none;
        transform: rotate(-90deg);
        font-weight: 400;
    }
    .nav-menu--right {
        width: calc(100% - 2rem);
        flex-direction: column;
    }
    .nav-menu--right li .primary-button {
        width: 100%;
        margin-block: 1.5rem;
    }
    .nav-menu-cnt:has(:not(.sandwich.opened)) .nav-menu,
    .nav-menu-cnt:has(:not(.sandwich.opened)) .nav-menu--right {
        display: none;
    }
    .nav-menu-cnt:has(.sandwich.opened) {
        background-color: #FFF;
        height: calc(100%);
        justify-content: space-between;
    }
    .nav-menu-cnt:has(.sandwich.opened) .nav-menu,
    .nav-menu-cnt:has(.sandwich.opened) .nav-menu--right {
        display: flex;
    }
    .nav-menu li > a,
    .nav-menu .submenu-cnt .submenu-items a {
        padding: .5rem 0rem;
        border-bottom: none !important;
    }
    .nav-menu li > a:hover,
    .nav-menu li > a.active,
    .nav-menu .submenu-cnt .submenu-items a:hover,
    .nav-menu .submenu-cnt .submenu-items a.active {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: .5rem 1rem;
        background: #FFECB2;
        border-radius: 1rem;
        margin-left: -1rem;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }
}
/* Hero Section */
.hero {
    padding: 8rem 0 0rem;
}
/* Hero Features */
.hero-features {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.hero-feature {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.hero-feature svg {
    flex-shrink: 0;
}
.hero-feature span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--Color-System-color-System-800);
    text-align: center;
    white-space: nowrap;
}
.hero .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
}
.hero h1 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 6.75rem;
}

.hero h2 {
    font-family: "Agbalumo", sans-serif;
    display: flex;
    transform: rotate(2.126deg);
    justify-content: center;
    align-items: center;
    gap: .625rem;
    border-radius: 1.5rem;
    background: #E4786B;
    color: var(--Color-System-color-System-50);
    text-align: center;
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.75rem;
    padding: 1rem 2.5rem 3rem 1rem;
}

.hero p {
    display: block;
    color: #000;
    text-align: center;
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    max-width: 70%;
    margin: auto;
    margin-top: 2rem;
}
.hero p + p {
    margin-top: 2rem;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .hero {
        padding: 8rem 0 0;
    }
    .hero > .container {
        padding: 0;
    }
    .hero h1 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .hero h2 {
        transform: rotate(2.126deg);
        padding: 1rem;
        justify-content: center;
        align-items: center;
        gap: .625rem;
        border-radius: .75rem;
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .hero p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
        max-width: 100%;
    }
    .hero p + p {
        margin-top: 1.5rem;
    }
    .hero img {
        width: 2rem;
    }
    .hero img + img {
        margin-left: 1.5rem;
    }
    .hero-features {
        gap: 1rem;
    }
    .hero-feature span {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
@media only screen and (max-width: 62.5rem) {
    .hero img {
        width: 24px;
    }
    .hero img + img {
        margin-left: 1rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Payment Methods Section */
.payment-methods {
    padding: 2.5rem 4rem;
}
.payment-methods > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 80rem;
}
.payment-methods h3 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.5rem;
    text-align: center;
}
.payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: center;
}

.payment-method-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* Mobile UI for Payment Methods */
@media only screen and (max-width: 81.25rem) {
    .payment-methods {
        padding: 2rem 1rem;
    }
    .payment-methods h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .payment-methods-list {
        gap: 0.75rem 1rem;
    }
    .payment-method-item {
        width: 3.5rem;
        height: 2.5rem;
    }
}

/* Why Cappybara Section */
.why-cappybara {
    padding: 5rem 7.5rem;
}
.why-cappybara > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}
.why-cappybara h2 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4rem;
    text-align: center;
}
.why-cappybara-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    width: 100%;
}
.why-cappybara-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.why-cappybara-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-cappybara-icon img,
.why-cappybara-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-cappybara-item h4 {
    color: var(--Color-System-color-System-800);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    margin: 0;
}
.why-cappybara-item p {
    color: var(--Color-System-color-System-600);
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 0;
}
/* Mobile UI for Why Cappybara */
@media only screen and (max-width: 81.25rem) {
    .why-cappybara {
        padding: 3rem 1rem;
    }
    .why-cappybara h2 {
        font-size: 1.75rem;
        line-height: 2rem;
    }
    .why-cappybara-grid {
        gap: 2rem;
    }
    .why-cappybara-item h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .why-cappybara-item p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
@media only screen and (max-width: 62.5rem) {
    .why-cappybara-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 7.5rem;
    background: var(--Color-System-color-System-100);
}
.how-it-works > .container {
    display: flex;
    gap: 5rem;
    align-items: center;
}
.how-it-works-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.how-it-works h2 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4rem;
    margin: 0;
    padding-left: 2rem;
    border-left: 1px solid var(--Color-System-color-System-200);
    padding-bottom: 3.5rem;
}
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2rem;
    border-left: 1px solid var(--Color-System-color-System-200);
}
/* Staggered entrance animation for steps */
.slide-right .how-it-works-step {
    opacity: 0;
    transform: translateX(-20px);
}
.slide-right.visible .how-it-works-step {
    opacity: 0.4;
    transform: translateX(0);
}
.slide-right.visible .how-it-works-step.active {
    opacity: 1;
}
.slide-right.visible .how-it-works-step:nth-child(1) { transition-delay: 0.1s; }
.slide-right.visible .how-it-works-step:nth-child(2) { transition-delay: 0.2s; }
.slide-right.visible .how-it-works-step:nth-child(3) { transition-delay: 0.3s; }
/* Entrance animation for the image */
.slide-right .how-it-works-image {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.slide-right.visible .how-it-works-image {
    opacity: 1;
    transform: translateX(0);
}
.how-it-works-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    opacity: 0.4;
    cursor: pointer;
    transform: translateX(0);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works-step:hover {
    opacity: 0.7;
    transform: translateX(4px);
}
.how-it-works-step.active {
    opacity: 1;
    transform: translateX(8px);
}
.how-it-works-step::before {
    content: '';
    position: absolute;
    left: calc(-2rem - 1.5px);
    top: 0.25rem;
    bottom: 0.25rem;
    width: 3px;
    background: var(--Color-Primary-Primary-800);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works-step.active::before {
    transform: scaleY(1);
}
.how-it-works-step h4 {
    color: var(--Color-System-color-System-800);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    margin: 0;
}
.how-it-works-step p {
    color: var(--Color-System-color-System-600);
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.how-it-works-step.active p {
    max-height: 200px;
    opacity: 1;
}
.how-it-works-image {
    flex-shrink: 0;
    width: 36.25rem;
    aspect-ratio: 580 / 591;
    position: relative;
    overflow: hidden;
}
.how-it-works-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
    opacity: 0;
    transform: translateX(20px) scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.how-it-works-image img.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
.how-it-works-image img.slide-out {
    opacity: 0;
    transform: translateX(-20px) scale(0.98);
}
/* Mobile UI for How It Works */
@media only screen and (max-width: 81.25rem) {
    .how-it-works {
        padding: 3rem 1rem;
    }
    .how-it-works > .container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .how-it-works h2 {
        font-size: 1.75rem;
        line-height: 2rem;
    }
    .how-it-works-steps {
        gap: 2rem;
    }
    .how-it-works-step h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .how-it-works-step p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .how-it-works-image {
        width: 100%;
    }
    /* Mobile entrance animation adjustment */
    .slide-right .how-it-works-image {
        transform: translateY(30px);
    }
    .slide-right.visible .how-it-works-image {
        transform: translateY(0);
    }
}

/* About Section */
.about {
    margin-top: 4rem;
}
.about .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: left;
    display: flex;
    align-content: center;
    margin: auto;
}
.about h2 {
    display: flex;
    font-family: "Agbalumo", sans-serif;
    color: #652815;
    text-align: center;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.about h2 span.big {
    font-size: 7rem;
    height: 6.25rem;
    margin-right: 1rem;
}
.about h2 span.highlighted {
    display: flex;
    transform: rotate(7.815deg);
    padding: 0 1.5rem 1rem 1rem;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    border-radius: 1.5rem;
    background: #6BC0E4;
    color: #FFF;
    text-align: center;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}
.about h2 + .slides {
    margin-top: 1.25rem;
}
.about .slides {
    position: relative;
    width: 100%;
}
.about .slides .slide {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 4rem 3rem 6rem;
    flex-direction: row;
    border-radius: 2.5rem;
    border: .0625rem solid var(--Color-Primary-Primary-800);
    background: #FFF;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin-block: 2rem;
}
.about .slides .slide + .slide {
    margin-top: 6rem;
}
.about .slides .slide > div {
    width: 50%;
}
.about .slides .slide > div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .slides .slide > div:first-child > img:first-child {
    position: absolute;
    transform: rotate(-9.152deg);
}
.about .slides .slide:nth-child(odd) > div:first-child > img:first-child {
    transform: rotate(9.152deg);
}
.about .slides .slide > div:first-child > img:last-child {
    z-index: 1;
    margin-left: 0;
    width: 40%;
}
.about .slides .slide > div:last-child {
    text-align: left;
    font-family: Outfit;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}
.about .slides .slide > div:last-child h3 {
    font-family: "Agbalumo", sans-serif;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
}
.about .slides .slide > div:last-child h4 {
    font-family: "Agbalumo", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}
.about .slides .slide > div:last-child ul {
    list-style-position: inside;
    list-style-type: disc;
}
.about .slides .slide > div:last-child p + ul,
.about .slides .slide > div:last-child p + h4,
.about .slides .slide > div:last-child h4 + p,
.about .slides .slide > div:last-child p + p,
.about .slides .slide > div:last-child ul + p,
.about .slides .slide > div:last-child ul + h4,
.about .slides .slide > div:last-child ul + ul {
    margin-top: 1rem;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .about {
        margin-top: 1rem;
    }
    .about h2 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .about h2 span.big {
        font-size: 2rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
        height: 2.5rem;
    }
    .about h2 span.highlighted {
        transform: rotate(7.815deg);
        padding: .75rem;
        justify-content: center;
        align-items: center;
        gap: .625rem;
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .about .slides .slides_dots {
        display: none;
    }
    .about .slides .slide > div:first-child > img:first-child {
        width: 22.3125rem;
    }
    .about .slides .slide > div:first-child > img:last-child {
        margin-left: 0%;
    }
}
@media only screen and (max-width: 62.5rem) {
    .about > .container {
        padding: 0;
    }
    .about .slides .slide {
        flex-direction: column;
        padding: 1rem;
        border-radius: 1.5rem;
    }
    .about .slides .slides_viewport {
        flex-direction: column;
    }
    .about .slides .slide > div {
        width: 100%;
    }
    .about .slides .slide + .slide {
        margin-top: 2rem;
    }
    .about .slides .slide > div:first-child {
        min-height: 25rem;
        margin-top: -1.5rem;
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width: 27.5rem) {
    .about .slides .slide > div:first-child {
        margin-top: 0rem;
        min-height: unset;
        width: 100%;
    }
    .about .slides .slide > div:first-child > img:first-child {
        width: 100%;
    }
    .about .slides .slide > div:first-child > img:first-child {
        position: relative;
    }
    .about .slides .slide > div:first-child > img:last-child {
        position: absolute;
    }
    .about .slides .slide + .slide {
        margin-top: 1rem;
    }
    .about .slide > div {
        gap: 0;
    }
    .about .slide > div p {
        margin-block: .5rem;
    }
    .about .slides .slide > div:first-child > img:first-child,
    .about .slides .slide:nth-child(odd) > div:first-child > img:first-child {
        transform: unset;
    }
}

/* Service Cards Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 75rem;
}
.services-row {
    display: flex;
    gap: 2rem;
    width: 100%;
}
.service-card {
    background: #FFF;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0.75rem 1.125rem 1.19375rem 0 rgba(206, 206, 206, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}
.service-card--small {
    width: 40%;
    flex-shrink: 0;
}
.service-card--large {
    flex: 1;
    min-width: 0;
}
.service-card__illustration {
    background: #F5F5F5;
    border: 2px solid #E1E1E1;
    border-radius: 1.5rem;
    height: 12.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.service-card__illustration img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}
.service-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-card__content h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--Color-System-color-System-800);
    margin: 0;
}
.service-card__content p {
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--Color-System-color-System-600);
    margin: 0;
}
.service-card__followers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-card__followers h4 {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: var(--Color-System-color-System-800);
    margin: 0;
}
.service-card__followers p {
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--Color-System-color-System-600);
    margin: 0;
}
.service-card--large {
    justify-content: space-between;
}

/* Mobile UI for Service Cards */
@media only screen and (max-width: 62.5rem) {
    .services-row {
        flex-direction: column;
    }
    .service-card--small,
    .service-card--large {
        width: 100%;
    }
    .services-grid {
        gap: 1rem;
    }
    .services-row {
        gap: 1rem;
    }
}
@media only screen and (max-width: 27.5rem) {
    .service-card {
        padding: 1rem;
        border-radius: 1rem;
    }
    .service-card__illustration {
        height: 10rem;
        border-radius: 1rem;
    }
    .service-card__content h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .service-card__content p,
    .service-card__followers p {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

/* Slogan Section */
.slogan {
    text-transform: uppercase;
    margin-top: 10rem;
    margin-bottom: 10rem;
}
.slogan .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
}
.slogan h2 {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var(--Color-Primary-Primary-800);
    font-family: "Agbalumo", sans-serif;
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 7rem;
}
.slogan h2 span.dark {
    color: #652815;
}
.slogan h2 span.highlighted {
    display: flex;
    transform: rotate(-2deg);
    padding: 0rem 2rem 1rem 2rem;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    border-radius: 1.5rem;
    background: var(--Color-Primary-Primary-600);
    color: var(--Color-Primary-Primary-300);
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .slogan {
        text-transform: uppercase;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }
    .slogan h2 {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .slogan h2 span.dark {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .slogan h2 span.highlighted {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
        transform: rotate(-2deg);
        padding: .75rem;
        justify-content: center;
        align-items: center;
        gap: .625rem;
        border-radius: .75rem;
    }
}
@media only screen and (max-width: 27.5rem) {
    .slogan {
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
}
/* Features */
.features {
    margin-top: 4rem;
    background-image: url('../images/background_feature.svg');
    background-position: bottom left;
    background-size: cover;
    background-repeat: no-repeat;
}
.features .container {
    flex-wrap: wrap;
    text-align: center;
    display: flex;
    align-content: center;
    flex-direction: row;
    margin: auto;
}
.features > .container > div:first-child {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 50%
}
.features > .container > div:first-child > img {
    width: 60%;
    max-width: 18.75rem;
}
.features > .container > div:last-child {
    width: 50%;
    background-color: #FFF;
    display: inline-flex;
    padding: 3.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: left;
}
.features > .container > div:last-child > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
    margin-bottom: 2rem;
}
.features > .container > div:last-child > h4 {
    color: var(--Color-System-color-System-800);
    font-family: "Agbalumo", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}
.features > .container > div:last-child > h3 span {
    display: inline-flex;
    transform: rotate(4.026deg);
    padding: .75rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    border-radius: 1.5rem;
    background: #652815;
    color: #FFF;
}
.features > .container > div:last-child ul {
    list-style: none;
    padding-left: 0;
}
.features > .container > div:last-child ul li {
    background: url('../images/icon-check.svg') no-repeat left top;
    padding: 0 0 0 2rem;
    margin: .3rem 0 0 0;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .features .container {
        flex-direction: column;
        padding: 2rem 0;
    }
    .features > .container > div:last-child > h3 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
        width: 100%;
    }
    .features > .container > div:last-child > h4 {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .features > .container > div:last-child > p {
        font-size: .875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.125rem;
    }
    .features > .container > div:last-child > h3 span {
        transform: rotate(4.026deg);
        padding: .5rem .75rem;
        justify-content: center;
        align-items: center;
        gap: .625rem;
        border-radius: .75rem;
    }
    .features > .container > div:first-child {
        width: 100%;
    }
    .features > .container > div:last-child {
        padding: 1rem;
        width: 100%;
    }
    .features > .container > div:first-child > img {
        max-width: 30%;
        margin-bottom: 2rem;
    }
    .features > .container > div:last-child ul li {
        font-size: .875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.125rem;
        padding: 0 0 0 1.5rem;
        background-size: 1.2rem;
    }
}
@media only screen and (max-width: 62.5rem) {
    .features {
        margin-inline: -1rem;
    }
}
/* Features with screenshots*/
.features_with_screenshot {
    margin-top: 4rem;
}
.features_with_screenshot {
    padding: 0 2rem;
}
.features_with_screenshot > .container {
    display: flex;
    padding: 3rem 0;
    align-items: center;
    gap: 2.5rem;
    border-radius: 2.5rem;
    /* border: .0625rem solid var(--Color-Primary-Primary-800); */
    background: #FFF;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    background-color: #FCE5CD;
}
.features_with_screenshot > .container > div {
    width: calc(50% - 2.5rem);
}
.features_with_screenshot > .container > div:first-child > img {
    max-width: 100%;
    height: auto;
}
.features_with_screenshot > .container > div:last-child > h3 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
    margin-bottom: 2rem;
}
.features_with_screenshot > .container > div:last-child {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .features_with_screenshot .container {
        flex-direction: column;
    }
    .features_with_screenshot {
        padding: 0 1rem;
    }
    .features_with_screenshot > .container > div {
        width: 100%;
    }
    .features_with_screenshot > .container > div:first-child {
        padding-right: 2rem;
    }
    .features_with_screenshot > .container > div:last-child > h3 {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .features_with_screenshot > .container > div:last-child {
        padding-inline: 1rem;
        font-size: .875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.125rem;
    }
}

@media only screen and (max-width: 62.5rem) {
    .features_with_screenshot {
        padding-inline: 0;
    }
}

/* Terms */
.terms {
    margin-top: 8rem;
}
.terms > .container {
    flex-wrap: wrap;
    flex-direction: column;
    display: flex;
    align-content: center;
    margin: auto;
    padding: 2rem 4rem;
}
.terms > .container > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}

@media only screen and (max-width: 62.5rem) {
    .terms {
        margin-top: 5rem;
    }
    .terms > .container > h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .terms > .container {
        padding: 2rem 1rem;
    }
}

/* Payment Plans */
.paymemnt-plans {
    margin-top: 4rem;
}
.paymemnt-plans > .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    padding: 1rem 0;
}
.paymemnt-plans > .container > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}
.paymemnt-plans > .container > p {
    color: var(--Color-System-color-System-800);
    text-align: center;
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
    margin-inline: 1rem;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div {
    position: relative;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #FFF;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-badge {
    position: absolute;
    top: 4.5rem;
    right: 3.725rem;
    transform: rotate(11.58deg);
    max-width: 6.5rem;
    padding: .725rem .725rem;
    border-radius: .75rem;
    background: #F5EDE0;
    box-shadow:
        0 0 0 1.2px #E4786B,
        0 3px 3px -1.5px rgba(219, 150, 0, 0.08),
        0 1px 1px -.5px rgba(219, 150, 0, 0.08),
        inset 0 -1px 2px 0 #FFF;
    color: #2A2D2D;
    font-family: Outfit;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    text-align: center;
}
@media only screen and (max-width: 62.5rem) {
    .paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-badge {
        top: 2.5rem;
        right: 2.725rem;
    }
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div.highlighted {
    border: .125rem solid var(--Color-Primary-Primary-800);
    background: var(--Color-System-color-System-50);
    box-shadow: 0rem .625rem 1.6313rem 0rem rgba(140, 137, 137, 0.25);
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > h4 {
    color: #000;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem; /* 133.333% */
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-subtitle {
    color: #2A2D2D;
    text-align: center;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    margin: .25rem 0 0 0;
    padding: 0;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > h5 {
    color: var(--Color-Primary-Primary-800, #BF7805);
    text-align: center;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
    margin-top: .25rem;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > h4 {
    color: var(--Color-Primary-Primary-800, #BF7805);
    text-align: center;
    font-family: Outfit;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
    margin-top: .25rem;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > img {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div button {
    margin-top: 1rem;
    position: relative;
    display: flex;
    height: 3rem;
    padding: .75rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    overflow: hidden;
    border-radius: .75rem;
    border: 1px solid rgba(254, 193, 0, 0.88);
    background:
        linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.25));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 -1px 6px 2px rgba(255, 255, 255, 0.8);
    color: #222424;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div button:hover {
    border-color: rgba(254, 193, 0, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 -1px 6px 2px rgba(255, 255, 255, 0.8);
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-description {
    margin-top: 1.5rem;
    text-align: center;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-description > .plan-description-heading {
    color: #2A2D2D;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    margin: 0;
    padding: 0;
    text-align: center;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-description > .plan-description-text {
    color: #535555;
    font-family: Outfit;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    margin: 1rem 0 0 0;
    padding: 0;
    text-align: center;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-description > ul {
    padding: 0;
    margin: 1.25rem 0 0 0;
    list-style: none;
    text-align: left;
    display: inline-block;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-description > ul > li {
    color: #2A2D2D;
    font-family: Outfit;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    background: url('../images/icon-check-bright.svg') no-repeat left center;
    background-size: 1.25rem 1.25rem;
    padding: 0 0 0 2rem;
    margin: .5rem 0 0 0;
    min-height: 1.25rem;
}
.paymemnt-plans > .container > .paymemnt-plans-cnt > div > .plan-description > ul > li:first-child {
    margin-top: 0;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .paymemnt-plans > .container > .paymemnt-plans-cnt {
        padding: .5rem;
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    .paymemnt-plans > .container > .paymemnt-plans-cnt > div {
        padding: 1rem;
        border-radius: 1rem;
    }
    .paymemnt-plans > .container > h3 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .paymemnt-plans > .container > p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
}
@media only screen and (max-width: 62.5rem) {
    .paymemnt-plans > .container > .paymemnt-plans-cnt {
        padding: .5rem;
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* Payment Plans Compare */
.paymemnt-plans-compare {
    margin-top: 4rem;
}
.paymemnt-plans-compare > .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    padding: 2rem 0;
}
.paymemnt-plans-compare > .container > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}
.paymemnt-plans-compare > .container > p {
    color: var(--Color-System-color-System-800);
    text-align: center;
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
}
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: .125rem solid var(--Color-Primary-Primary-800);
    background: var(--Color-System-color-System-50);
    width: 100%;
}
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table {
    width: 100%;
}
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table th {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #535555;
    text-align: left;
    border-bottom: .0625rem solid #E1E1E1;
    padding: .75rem 1rem;
}
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #222424;
    text-align: left;
    padding: 1rem;
}
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table th:nth-child(2),
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table th:nth-child(3),
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td:nth-child(2),
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td:nth-child(3) {
    text-align: center;
}
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td:nth-child(2),
.paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td:nth-child(3) {
    font-size: 28px;
}
/* Mobile UI */
@media only screen and (max-width: 90rem) {
    .paymemnt-plans-compare > .container {
        padding: 2rem;
    }
}
@media only screen and (max-width: 81.25rem) {
    .paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt {
        padding: .5rem;
        margin-top: 1rem;
    }
    .paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > div {
        padding: 1rem;
        border-radius: 1rem;
    }
    .paymemnt-plans-compare > .container > h3 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .paymemnt-plans-compare > .container > p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
    .paymemnt-plans-compare > .container {
        padding: 0 1rem;
    }
    .paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table th {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: .5rem .5rem;
    }
    .paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td {
        font-size: .875rem;
        line-height: 1.125rem;
        padding: .5rem .5rem;
    }
    .paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td:nth-child(2),
    .paymemnt-plans-compare > .container > .paymemnt-plans-compare-cnt > table td:nth-child(3) {
        font-size: 16px;
    }
}
/* Image Block */
.image {
    margin-top: 4rem;
}
.image > .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    padding: 2rem 0;
}
.image > .container > img {
    width: 100%;
    padding: 1rem 0;
}
/* Clickable comparison image with overlay link on the "Start earning" button */
.compare-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin: 1rem 0;
}
.compare-wrap img {
    width: 100%;
    display: block;
    padding: 0;
}
.compare-hotspot {
    position: absolute;
    left: 34.2%;
    top: 91.2%;
    width: 30%;
    height: 5.3%;
    border-radius: 1rem;
    cursor: pointer;
}
.compare-hotspot:focus-visible {
    outline: 2px solid #FEC100;
    outline-offset: 3px;
}
.image > .container > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}
.image > .container > p {
    color: var(--Color-System-color-System-800);
    text-align: center;
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
    padding: 1rem;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .image > .container > img {
        padding: 1rem;
    }
    .image > .container > h3 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .image > .container > p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
}

/* Tagline Banner */
.tagline-banner {
    margin-top: 4rem;
}
.tagline-banner > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(97.68deg, #FAD5D1 1.97%, #D5F0FB 103.86%);
}
.tagline-banner > .container > p {
    margin: 0;
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .tagline-banner > .container {
        padding: 1.5rem 1rem;
        border-radius: 1.5rem;
    }
    .tagline-banner > .container > p {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
}

/* Text Two Columns  */
.text-two-columns {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.text-two-columns > .container {
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    border-radius: 2.5rem;
    justify-content: space-between;
}
.text-two-columns > .container > div:last-child {
    width: 40%;
    margin: 1rem 0;
    border-radius: .75rem;
    /* border: .0625rem solid var(--Color-Primary-Primary-800); */
    background: #FFF;
    text-align: unset;
    padding: 2rem 1rem;
    box-shadow: 0 4px 27.2px 0 rgba(180, 166, 166, 0.25);
}
.text-two-columns > .container > div:last-child ul {
    margin-bottom: 0;
}
.text-two-columns > .container > div:last-child * {
    text-align: initial;
}
.text-two-columns > .container > div:first-child {
    width: calc(60% - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.text-two-columns > .container > div:first-child > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}
.text-two-columns > .container > div:first-child > p {
    color: var(--Color-System-color-System-800);
    text-align: center;
    font-family: Outfit;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
}
.text-two-columns > .container ul {
    list-style: none;
    padding-left: 0;
}
.text-two-columns > .container ul li {
    background: url(../images/icon-check.svg) no-repeat left top;
    padding: 0 0 0 2rem;
    margin: .3rem 0 0 0;
}

/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .text-two-columns > .container {
        flex-direction: row;
        border-radius: .75rem;
        padding: 0;
        gap: .625rem;
        margin-inline: 0;
    }
    .text-two-columns > .container > div:first-child {
        width: 100%;
        padding: 1rem 0.5rem;
    }
    .text-two-columns > .container > div:first-child > h3 {
        justify-content: center;
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .text-two-columns > .container > div:first-child > p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
    .text-two-columns > .container > div:last-child {
        width: 100%;
        margin: .5rem 0;
    }
}
@media only screen and (max-width: 30rem) {
    .text-two-columns {
        margin-top: 2rem;
    }
    .text-two-columns > .container > div:first-child > p {
        margin-block: .5rem;
    }
}

/* Image Two Columns with Text Block */
image-two-columns-with-text {
    margin-top: 4rem;
}
.image-two-columns-with-text > .container {
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    border-radius: 2.5rem;
    justify-content: space-between;
}
.image-two-columns-with-text > .container > img {
    width: 50%;
    margin: 1rem 0;
}
.image-two-columns-with-text > .container > div {
    width: calc(50% - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.image-two-columns-with-text > .container > div > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}
.image-two-columns-with-text > .container > div > p {
    color: var(--Color-System-color-System-800);
    text-align: center;
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
}

/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .image-two-columns-with-texts > .container {
        flex-direction: row;
        border-radius: .75rem;
        padding: 1rem 1.5rem;
        gap: .625rem;
        margin-inline: 1rem;
    }
    .image-two-columns-with-text > .container > div {
        width: 100%;
    }
    .image-two-columns-with-text > .container > div > h3 {
        justify-content: center;
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .image-two-columns-with-text > .container > div > p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
    .image-two-columns-with-text > .container > img {
        width: 100%;
        margin: 1rem 0;
    }
}
/* Image Two Columns Block */
.image-two-columns {
    margin-top: 4rem;
}
.image-two-columns > .container {
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    padding: 3rem 5rem;
    border-radius: 2.5rem;
    border: .0625rem solid var(--Color-Primary-Primary-800);
    background: #FFF;
}
.image-two-columns > .container > img {
    width: calc(50% - 2rem);
    margin: 1rem;
}
.image-two-columns > .container > h3 {
    width: calc(50% - 2rem);
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
    display: flex;
    align-items: center;
}

/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .image-two-columns > .container {
        flex-direction: column;
        border-radius: .75rem;
        padding: 1rem 1.5rem;
        gap: .625rem;
        margin-inline: 1rem;
    }
    .image-two-columns > .container > h3 {
        justify-content: center;
        width: 100%;
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .image-two-columns > .container > img {
        width: 100%;
    }
}

/* Landing Image cnt */
.landing_image {
    margin-top: 4rem;
}
.landing_image > .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
    padding: 2rem 0;
}
.landing_image > .container > img {
    width: 100%;
    margin-bottom: 0;
    margin-inline: -2rem;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .landing_image {
        margin-top: 2rem;
    }
    .landing_image > .container > img {
        margin-inline: 0rem;
        width: 100vw;
    }
}
@media (max-width: 30rem) {
    .landing_image > .container {
        padding: 0
    }
}
/* Floating hero labels (over the product mockup) */
#landing_image_top > .container {
    position: relative;
}
.hero-label {
    position: absolute;
    z-index: 3;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    background: #F5EDE0;
    color: #2A2D2D;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    /* coral ring + soft drop shadow underneath + warm micro-shadow + inner highlight */
    box-shadow:
        0 0 0 1.2px #E4786B,
        0 0.5rem 1rem -0.375rem rgba(101, 40, 21, 0.22),
        0 0.1875rem 0.1875rem -0.09375rem rgba(219, 150, 0, 0.08),
        0 0.0625rem 0.0625rem -0.03125rem rgba(219, 150, 0, 0.08),
        inset 0 -0.0625rem 0.125rem 0 #FFF;
    /* fade in from invisible on load — staggered per label (see modifiers below) */
    opacity: 0;
    animation: fadeIn 0.6s ease-out both;
    /* parallax shift + scroll-driven rotation, layered over the static tilt */
    transform: translateY(var(--parallax-y, 0)) rotate(calc(var(--tilt, 0deg) + var(--parallax-rot, 0deg)));
    transition: transform 0.15s ease-out;
}
/* Promote to a compositor layer only while the hero is on-screen (the
   .parallax-active class is toggled by the parallax scaffolding in main.js);
   the layer is released once it scrolls away. */
#landing_image_top.parallax-active .hero-label { will-change: transform; }
.hero-label--tl { top: 4%;  left: 2%;   --tilt: -5deg;  animation-delay: 0.45s; }
.hero-label--tr { top: 7%;  right: 3%;  --tilt: -12deg; animation-delay: 0.55s; }
.hero-label--c  { top: 14%; left: 37%;  --tilt: -3deg;  animation-delay: 0.65s; }
.hero-label--bl { top: 50%; left: 2%;   --tilt: -14deg; animation-delay: 0.75s; }
.hero-label--br { bottom: 7%; right: 6%; --tilt: -8deg;  animation-delay: 0.85s; }
@media (prefers-reduced-motion: reduce) {
    .hero-label {
        opacity: 1;
        animation: none;
    }
}
@media (max-width: 81.25rem) {
    .hero-label {
        font-size: 0.875rem;
        padding: 0.375rem 0.625rem;
    }
}
/* Below 62.5rem the image is full-bleed single column. Most labels would overlap
   the form fields, so keep only the first two pinned to the top corners (clear of
   the interactive center) and drop the rest.
   (same breakpoint where the why-not-patreon parallax is disabled). */
@media (max-width: 62.5rem) {
    .hero-label--c,
    .hero-label--bl {
        display: none;
    }
    .hero-label {
        font-size: 0.75rem;
        line-height: 1.1rem;
        padding: 0.3125rem 0.5rem;
    }
    .hero-label--tl { top: -0.5rem; left: 0.5rem;  --tilt: -5deg; }
    .hero-label--tr { top: -0.5rem; right: 0.5rem; --tilt: 5deg;  }
    .hero-label--br {
        bottom: -0.5rem;
        left: 50%;
        right: auto;
        max-width: 80%;
        white-space: normal;
        --tilt: -3deg;
        transform: translateX(-50%) translateY(var(--parallax-y, 0)) rotate(calc(var(--tilt, 0deg) + var(--parallax-rot, 0deg)));
    }
}
/* FAQs */
.faqs {
    padding: 5rem 7.5rem;
}
.faqs > .container {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
}

/* FAQ Header (Left Column) */
@media only screen and (min-width: 81.251rem) {
    .faqs-header {
        position: sticky;
        top: 120px;
    }
}
.faqs-header h3 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4rem;
    margin-bottom: 1.5rem;
}
.faqs-header p {
    color: var(--Color-System-color-System-800);
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}

/* FAQ List (Right Column) */
.faqs-list {
    width: 49rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual FAQ Item */
.faq {
    background: #FFF;
    border: 1px solid var(--Color-Primary-Primary-800);
    border-radius: .75rem;
    padding: 1rem 1.5rem;
}
.faq-question {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    cursor: pointer;
}
.faq-question h4 {
    flex: 1;
    color: var(--Color-System-color-System-800);
    font-family: "Agbalumo", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    margin: 0;
}
.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--Color-System-color-System-800);
    transition: transform 0.3s ease;
}
.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.faq.expanded .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}
.faq.expanded .faq-answer {
    max-height: 500px;
    padding-top: .625rem;
}
.faq-answer p {
    color: var(--Color-System-color-System-600);
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 0;
}

/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .faqs {
        padding: 3rem 1rem;
    }
    .faqs > .container {
        flex-direction: column;
        gap: 2rem;
    }
    .faqs-header {
        width: 100%;
    }
    .faqs-header h3 {
        font-size: 1.75rem;
        line-height: 2rem;
    }
    .faqs-header p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .faqs-list {
        width: 100%;
    }
}
/* Payments */
.payments {
    margin-top: 5rem;
}
.payments > .container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    display: flex;
    align-content: center;
    margin: auto;
}

.payments > .container > h3 {
    color: #652815;
    text-align: center;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem;
}
.payments > .container > p {
    color: var(--Color-System-color-System-800);
    text-align: center;
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
}
.payments > .container .payments-viewport {
    margin-block: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
}
.payments > .container > .payments-viewport > .payment {
    display: flex;
    width: 25rem;
    height: 27.5rem;
    transform: rotate(6deg);
    padding: 2rem 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 1.5rem;
    border: .0625rem solid var(--Color-Primary-Primary-800);
    background: #FFF;
}
.payments > .container > .payments-viewport > .payment:nth-child(odd) {
    transform: rotate(-6deg);
}
.payments > .container > .payments-viewport > .payment > img {
    max-width: 100%;
}
.payments > .container > .payments-viewport > .payment h4 {
    color: var(--Color-System-color-System-800);
    font-family: "Agbalumo", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    margin-block: 3rem 2rem;
    text-align: left;
}
.payments > .container > .payments-viewport > .payment p {
    color: var(--Color-System-color-System-800);
    font-family: Outfit;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    text-align: left;
}
/* Mobile UI */
@media only screen and (max-width: 81.25rem) {
    .payments {
        margin-top: 4rem;
    }
    .payments > .container > h3 {
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .payments > .container > p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
    .payments > .container > .payments-viewport {
        gap: 1rem;
    }
    .payments > .container > .payments-viewport > .payment {
        width: 23rem;
        height: 23rem;
    }
    .payments > .container > .payments-viewport > .payment h4 {
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;
    }
    .payments > .container > .payments-viewport > .payment p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5rem;
    }
    .payments > .container > .payments-viewport > .payment {
        transform: none !important;
    }
}
@media only screen and (max-width: 62.5rem) {
    .payments > .container > .payments-viewport {
        gap: 1rem;
        align-items: center;
        flex-direction: column;
        margin-block: 1rem;
    }
    .payments > .container > p {
        margin-block: 1rem;
    }
    .payments > .container > .payments-viewport > .payment {
        padding: 1rem 1.5rem;
        height: max-content;
    }
    .payments > .container > .payments-viewport > .payment h4 {
        margin-block: 1rem;
    }
}
/* Footer */
.footer {
    color: var(--Color-System-color-System-600);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.footer-content .container {
    max-width: var(--container-width);
    padding: 0 2rem;
    margin-block: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile UI */
.footer-copyright {
    margin: auto;
    max-width: 100%;
}
.footer-copyright .container {
    max-width: var(--container-width);
    padding: 1rem 2rem;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright-links a {
    color: var(--Color-System-color-System-600);
    text-align: center;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: none;
}
.footer-copyright-links a:hover {
    text-decoration: underline;
}
.footer-copyright-links a + a {
    margin-left: 1.5rem;
}
.footer-copyright-links-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile UI */
@media only screen and (max-width: 62.5rem) {
    .footer-content .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
    .footer-copyright .container {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .footer-content .logo {
        display: none;
    }
    .footer-copyright-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-block: s;
    }
    .footer-copyright-links a {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .footer-copyright-links a + a {
        margin-left: 0;
        margin-top: .7rem;
    }
    .footer-copyright-links-social {
        gap: 2rem;
        margin-top: 1rem;
        align-items: center;
        width: 100%;
        justify-content: center;
    }
    .footer-copyright-links-social > span > a + a {
        margin-left: 2rem;
    }
}

/* START: Animarted Sliders mod */
.about .slides {
    overflow: hidden;
}
.slides_viewport {
    display: flex;
    transition: transform 0.5s ease;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
}
.slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.slide > div {
    display: flex;
    flex-direction: column;
}

.slide > div > div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide > div > div:first-child img:first-child {
    width: 100%;
    max-width: 18.75rem;
    height: auto;
}

.slide > div > div:first-child img:last-child {
    position: absolute;
    width: 60%;
    max-width: 12.5rem;
    height: auto;
}

.slides_dots {
    display: flex;
    justify-content: center;
    gap: .625rem;
    margin-top: 1.25rem;
}

.slide-dot {
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-dot.active {
    background: var(--Color-Primary-Primary-600);
}
.about .slides .slide {
    height: min-content;
}
@media (max-width: 48rem) {
    .slide {
        padding: .9375rem;
    }

    .slide > div {
        gap: .9375rem;
    }

    .slide > div > div:first-child img:first-child {
        max-width: 15.625rem;
    }

    .slide > div > div:first-child img:last-child {
        max-width: 9.375rem;
    }

    .slide h3 {
        font-size: 1.5rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .slide ul {
        padding-left: 1.25rem;
    }

    .slide-dot {
        width: .625rem;
        height: .625rem;
    }
}

@media (max-width: 30rem) {
    .slide {
        padding: .625rem;
    }

    .slide > div {
        gap: .625rem;
    }

    .slide > div > div:first-child img:first-child {
        max-width: 12.5rem;
    }

    .slide > div > div:first-child img:last-child {
        max-width: 7.5rem;
    }

    .slide h3 {
        font-size: 1.25rem;
    }

    .slide p {
        font-size: .9rem;
    }

    .slide ul {
        padding-left: .9375rem;
    }

    .slide-dot {
        width: .5rem;
        height: .5rem;
    }
}
/* END: Animarted Sliders mod */

/* START: Features Switcher */
.features-switcher {
    position: relative;
}

.features-list-container {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.text-two-columns .features-list {
    list-style: none;
    padding-left: 0;
    display: none;
    grid-row: 1;
    grid-column: 1;
}

.text-two-columns .features-list.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.text-two-columns .features-list li {
    background: url(../images/icon-check.svg) no-repeat left top;
    padding: 0 0 0 2rem;
    margin: .3rem 0 0 0;
}

.text-two-columns .features-dots {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.text-two-columns .features-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.text-two-columns .features-dot.active {
    background: var(--Color-Primary-Primary-600);
}
/* END: Features Switcher */

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Base animation states - hidden initially */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale in effect */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in up for individual items with custom delay */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom in subtle */
.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .scale-in,
    .slide-left,
    .slide-right,
    .stagger-children > *,
    .fade-up,
    .zoom-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* END: Scroll Animations */

/* ========================================
   FIGMA LANDING — NEW / UPDATED SECTIONS
   ======================================== */

/* Normalize payment-method icon tiles for consistent visual weight */
.payment-method-item {
    width: 70px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-method-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Why Cappybara — 4 columns */
.why-cappybara-grid {
    gap: 2rem;
}
.why-cappybara-item {
    max-width: 264px;
}

/* Design your donation flow section */
.donation-flow {
    padding: 5rem 7.5rem;
}
.donation-flow > .container {
    display: flex;
    gap: 5rem;
    align-items: center;
}
.donation-flow__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.donation-flow__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
    border-left: 1px solid var(--Color-System-color-System-200);
    padding-bottom: 3.5rem;
}
.donation-flow h2 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4rem;
    margin: 0;
}
.donation-flow__subhead {
    color: var(--Color-System-color-System-600);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin: 0;
    max-width: 36rem;
}
.donation-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2rem;
    border-left: 1px solid var(--Color-System-color-System-200);
}
/* Staggered entrance animation for steps */
.donation-flow.slide-right .donation-flow__step {
    opacity: 0;
    transform: translateX(-20px);
}
.donation-flow.slide-right.visible .donation-flow__step {
    opacity: 1;
    transform: translateX(0);
}
.donation-flow.slide-right.visible .donation-flow__step:nth-child(1) { transition-delay: 0.1s; }
.donation-flow.slide-right.visible .donation-flow__step:nth-child(2) { transition-delay: 0.2s; }
.donation-flow.slide-right.visible .donation-flow__step:nth-child(3) { transition-delay: 0.3s; }
/* Entrance animation for the image */
.donation-flow.slide-right .donation-flow__image {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.donation-flow.slide-right.visible .donation-flow__image {
    opacity: 1;
    transform: translateX(0);
}
.donation-flow__step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    cursor: pointer;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.donation-flow__step h4 {
    opacity: 0.5;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.donation-flow__step:hover h4 {
    opacity: 0.8;
}
.donation-flow__step.active h4 {
    opacity: 1;
}
.donation-flow__step::before {
    content: '';
    position: absolute;
    left: calc(-2rem - 1.5px);
    top: 0.25rem;
    bottom: 0.25rem;
    width: 3px;
    background: var(--Color-Primary-Primary-800);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.donation-flow__step.active::before {
    transform: scaleY(1);
}
.donation-flow__step h4 {
    color: var(--Color-System-color-System-800);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    margin: 0;
}
.donation-flow__step p {
    color: var(--Color-System-color-System-600);
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 0.5rem 0 0 0;
}
.donation-flow__image {
    flex-shrink: 0;
    width: 36.25rem;
    aspect-ratio: 580 / 591;
    position: relative;
    overflow: hidden;
}
.donation-flow__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
    opacity: 0;
    transform: translateX(20px) scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.donation-flow__image img.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
.donation-flow__image img.slide-out {
    opacity: 0;
    transform: translateX(-20px) scale(0.98);
}
/* Mobile UI for Donation Flow */
@media only screen and (max-width: 81.25rem) {
    .donation-flow {
        padding: 3rem 1rem;
    }
    .donation-flow > .container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .donation-flow h2 {
        font-size: 1.75rem;
        line-height: 2rem;
    }
    .donation-flow__subhead {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .donation-flow__steps {
        gap: 2rem;
    }
    .donation-flow__step h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .donation-flow__step p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .donation-flow__image {
        width: 100%;
    }
    /* Mobile entrance animation adjustment */
    .donation-flow.slide-right .donation-flow__image {
        transform: translateY(30px);
    }
    .donation-flow.slide-right.visible .donation-flow__image {
        transform: translateY(0);
    }
}

/* Built for real-world use — override old "3 in one" heading styling */
.about h2 {
    font-size: 4rem;
    line-height: 4.5rem;
}
.about__subhead {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--Color-System-color-System-800);
    text-align: center;
    margin-top: 1.5rem;
    max-width: 62rem;
    align-self: center;
}

.primary-button.outline {
    background: transparent;
    color: var(--Color-System-color-System-800);
    border: 2px solid var(--Color-Primary-Primary-600);
}

/* Built for real-world use — vertical stack of "case" cards (Donations + Tips).
   Each is a white card with the copy on the left, a flat yellow CTA below it, and
   the illustration in a light-grey panel on the right. A soft pastel halo bleeds
   out behind every card (the --glow-* radial gradients set per card). */
.case-deck {
    width: 100%;
    max-width: 75rem;
    margin-top: 2.5rem;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
/* Each card's pastel gradient IS its background (clipped to the rounded corners).
   The copy sits directly on the gradient; only the illustration gets a separate
   near-white panel. Tips runs blue (bottom-left) → lavender/pink (top-right);
   Donations runs green (left) → peach (right), matching the brand colours. */
.case-card {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem 0 rgba(101, 40, 21, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case-card--tips {
    /* slightly narrower than Donations, centred — matches the Figma layout */
    margin-inline: 4rem;
    background:
        radial-gradient(72% 82% at 12% 96%, rgba(150, 190, 236, 0.85), transparent 60%),
        radial-gradient(78% 88% at 96% 6%, rgba(208, 188, 242, 0.9), transparent 60%),
        radial-gradient(55% 70% at 100% 48%, rgba(246, 198, 226, 0.7), transparent 55%),
        #ffffff;
}
.case-card--donations {
    background:
        radial-gradient(80% 96% at 0% 30%, rgba(176, 214, 138, 0.9), transparent 62%),
        radial-gradient(66% 82% at 4% 100%, rgba(190, 222, 152, 0.82), transparent 60%),
        radial-gradient(68% 86% at 100% 62%, rgba(250, 210, 186, 0.78), transparent 58%),
        #ffffff;
}
.case-card:hover,
.case-card:focus-within {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.75rem 3rem 0 rgba(101, 40, 21, 0.14);
}
.case-card__body {
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 2.5rem;
    border-right: 1px solid rgba(42, 45, 45, 0.1);
}
.case-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(42, 45, 45, 0.1);
}
.case-card__body .primary-button {
    margin-top: auto;
    border: 1px solid rgba(254, 193, 0, 0.55);
}
.case-card__media {
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    border-radius: 1.5rem;
    overflow: hidden;
}
.case-card__media img {
    max-width: 70%;
    max-height: 80%;
    object-fit: contain;
}
.case-card h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 3rem;
    color: #2A2D2D;
    margin: 0;
}
.case-card__text p {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--Color-System-color-System-600);
    margin: 0;
}
.case-card__uses {
    list-style: none;
    margin: 0.25rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.case-card__uses li {
    position: relative;
    padding-left: 1.5rem;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--Color-System-color-System-600);
}
.case-card__uses li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    top: 0;
    color: var(--Color-System-color-System-600);
}
/* Below the tablet breakpoint: stack the copy above the illustration */
@media only screen and (max-width: 62.5rem) {
    .case-card {
        flex-direction: column;
        gap: 1.5rem;
    }
    .case-card--tips {
        margin-inline: 0;
    }
    .case-card__body {
        border-right: 0;
        padding-right: 0;
    }
    .case-card__media {
        min-height: 14rem;
    }
}
@media only screen and (max-width: 27.5rem) {
    .case-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    .case-card h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .case-card__text p,
    .case-card__uses li {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
}

/* Final CTA section */
.final-cta {
    border-radius: 32px;
    background: linear-gradient(180deg, #F1DAD9 0%, #E2D5FB 100%);
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin: auto;max-width: var(--container-width);
    padding-inline: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.final-cta > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 75rem;
}
.final-cta h2 {
    font-family: "Agbalumo", sans-serif;
    color: #652815;
    font-size: 4rem;
    line-height: 4.5rem;
    font-weight: 400;
}
.final-cta p {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--Color-System-color-System-600);
    max-width: 64rem;
}
@media only screen and (max-width: 81.25rem) {
    .final-cta {
        padding: 3rem 1rem;
    }
    .final-cta h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .final-cta p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

/* Footer — primary nav row */
.footer-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.footer-nav a {
    color: var(--Color-System-color-System-800);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-decoration: none;
}
.footer-nav a:hover {
    text-decoration: underline;
}
.footer-copyright .container {
    justify-content: space-between;
}
.footer-copyright__text {
    color: var(--Color-System-color-System-600);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
}
@media only screen and (max-width: 62.5rem) {
    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        align-items: center;
        width: 100%;
    }
}
/* END: Figma landing updates */

/* Perfect for any service — tips.html */
.perfect-for-service {
    padding: 5rem 7.5rem;
}
.perfect-for-service > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}
.perfect-for-service-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}
.perfect-for-service-header h2 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 400;
    margin: 0;
}
.perfect-for-service-header p {
    color: #000;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    margin: 0;
}
.perfect-for-service-grid {
    display: flex;
    gap: 2.5rem;
    width: 100%;
    max-width: 75rem;
    align-items: stretch;
}
.service-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #FFF;
    border: 1px solid var(--Color-Primary-Primary-800);
    border-radius: 2.5rem;
}
.service-item-image {
    position: relative;
    height: 15.125rem;
    border-radius: 2rem;
    overflow: hidden;
    flex-shrink: 0;
    background: #FFF;
}
.service-item-image img {
    position: absolute;
    left: 0;
    width: 100%;
    /* 20% overscan top & bottom (was 10%). The parallax travels ±30px; this
       keeps a covered margin at every breakpoint so an image edge can never
       pull into the frame and reveal the background behind it. */
    height: 140%;
    top: -20%;
    object-fit: cover;
    transform: translateY(var(--parallax-y, 0));
    transition: transform 0.15s ease-out;
}
/* will-change only while the section is on-screen (set by main.js). */
#perfect-for-service.parallax-active .service-item-image img { will-change: transform; }
.service-item h4 {
    color: #652815;
    font-family: "Young Serif", serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    margin: 0;
}
.service-item p {
    color: var(--Color-System-color-System-800);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin: 0;
}
@media only screen and (max-width: 81.25rem) {
    .perfect-for-service {
        padding: 3rem 1rem;
    }
    .perfect-for-service-header h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }
    .perfect-for-service-header p {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
    .perfect-for-service > .container {
        gap: 2.5rem;
    }
    .perfect-for-service-grid {
        gap: 1.25rem;
    }
    .service-item {
        padding: 1rem;
        border-radius: 2rem;
        gap: 0.5rem;
    }
    .service-item-image {
        height: 12rem;
        border-radius: 1.5rem;
    }
    .service-item h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
@media only screen and (max-width: 62.5rem) {
    .perfect-for-service-grid {
        flex-direction: column;
        gap: 1.25rem;
    }
    .service-item-image {
        height: 14rem;
    }
}

/* Why not Patreon? section */
.why-not-patreon {
    padding: 5rem 7.5rem;
}
.why-not-patreon > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}
.why-not-patreon h2 {
    color: #652815;
    font-family: "Agbalumo", sans-serif;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
}
.why-not-patreon-grid {
    display: flex;
    gap: 2.5rem;
    width: 100%;
    max-width: 75rem;
    align-items: stretch;
}
.why-not-patreon-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #FFF;
    border: 1px solid var(--Color-Primary-Primary-800);
    border-radius: 2.5rem;
    transform: translateY(var(--parallax-y, 0));
    transition: transform 0.15s ease-out;
}
/* will-change only while the section is on-screen (set by main.js). */
#why-not-patreon.parallax-active .why-not-patreon-item { will-change: transform; }
.why-not-patreon-number {
    height: 3.5rem;
    width: auto;
    display: block;
}
.why-not-patreon-item h4 {
    color: #652815;
    font-family: "Young Serif", serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    margin: 0;
}
.why-not-patreon-item p {
    color: var(--Color-System-color-System-800);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin: 0;
}
@media only screen and (max-width: 81.25rem) {
    .why-not-patreon {
        padding: 3rem 1rem;
    }
    .why-not-patreon h2 {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }
    .why-not-patreon > .container {
        gap: 2.5rem;
    }
    .why-not-patreon-grid {
        gap: 1.25rem;
    }
    .why-not-patreon-item {
        padding: 1.25rem;
        border-radius: 2rem;
        gap: 0.5rem;
    }
    .why-not-patreon-item h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
@media only screen and (max-width: 62.5rem) {
    .why-not-patreon {
        padding: 2.5rem 1rem;
    }
    .why-not-patreon h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }
    .why-not-patreon-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .why-not-patreon-item {
        transform: none;
    }
    .why-not-patreon-number {
        height: 3rem;
    }
}

/* Contact page */
.contact {
    padding: 9rem 0 4rem;
    min-height: 70vh;
}
.contact .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 33.4375rem);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: 0 clamp(1rem, 4vw, 7.375rem);
}
.contact-hero {
    padding-top: 1.5rem;
    text-align: center;
}
.contact-hero h1 {
    font-family: "Agbalumo", serif;
    font-weight: 400;
    font-size: 5rem;
    line-height: 1.35;
    color: var(--background-color-footer);
}
.contact-hero h2 {
    font-family: "Agbalumo", serif;
    font-weight: 400;
    font-size: 5rem;
    line-height: 1.35;
    color: #fff;
    padding: 0 2rem 2rem;
    border-radius: 1.5rem;
    display: inline-block;
    margin: 1rem auto 2rem;
}
.contact-hero p {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 1.25rem;
}
.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.contact-form label {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--Color-System-color-System-800);
}
.contact-form .req {
    color: #D9342B;
    margin-left: 0.25rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--Color-System-color-System-800);
    background: var(--Color-System-color-System-50);
    border: 1px solid var(--Color-System-color-System-300);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    outline: none;
    width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--Color-System-color-System-600);
}
.contact-form select:invalid {
    color: var(--Color-System-color-System-600);
}
.contact-form textarea {
    resize: vertical;
    min-height: 11rem;
}
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M6 9L12 15L18 9' stroke='%23535555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--Color-Primary-Primary-600);
}
.contact-form button[type="submit"] {
    margin-top: 0.75rem;
    border: none;
    cursor: pointer;
    width: 100%;
}
.contact-form .form-status {
    min-height: 1.5rem;
    font-size: 0.9375rem;
    margin: 0;
}
.contact-form .form-status.is-error {
    color: #D9342B;
}
.contact-form .form-status.is-success {
    color: #2E8540;
}

@media only screen and (max-width: 90rem) {
    .contact .container {
        /* minmax(0, 1fr) — not bare `1fr` (= minmax(auto, 1fr)) — so the single column
           is NOT forced wide by the hero heading's min-content width. Otherwise the
           unwrappable hero <h2> stretched this column past the viewport, dragging the
           form's width and gutters off with it. */
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }
}
@media only screen and (max-width: 60rem) {
    .contact {
        padding: 7rem 0 3rem;
    }
    .contact-hero h1,
    .contact-hero h2 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    /* Shrink the banner's padding and cap its width so the non-breaking
       "from our team" phrase fits within the viewport on small screens. */
    .contact-hero h2 {
        padding: 0.5rem 1rem 1rem;
        max-width: 100%;
    }
    .contact-hero p {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
}
