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

:root {
    --section-x: clamp(16px, 3vw, 30px);
    --section-gap: clamp(72px, 10vw, 140px);
    --phone-width: clamp(280px, 26vw, 360px);
    --phone-half: calc(var(--phone-width) / 2);
    --phone-height: calc(var(--phone-width) * 2.0476);
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.main-content {
    position: relative;
    z-index: 2;
    background-color: #fcf0e2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-radius: 0 0 79px 79px;
    padding-bottom: 120px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    background-size: cover;
}

p,
a {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: "Outfit", sans-serif;
}

/* =============================================
   BANNER SECTION
   ============================================= */
/* BANNER SECTION CSS [START] */
#banner-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #fcf0e2;
}

#banner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    will-change: top, bottom, left, right, border-radius;
}

#banner .banner-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.15);
    z-index: 1;
    will-change: transform;
}

#banner .banner-bg-placeholder {
    position: absolute;
    inset: 0;
    background: url("../images/banner-small.png") 50% 50% no-repeat;
    background-size: cover;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 1;
}

#banner .banner-bg-highres {
    position: absolute;
    inset: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

#banner .banner-bg-highres.loaded {
    opacity: 1;
}

#banner .header-logo {
    position: relative;
    z-index: 2;
    width: clamp(150px, 17vw, 251px);
    padding-top: clamp(24px, 4vw, 50px);
}

/* BANNER SECTION CSS [END] */

/* =============================================
   MEMORIES / FEATURES SECTION
   ============================================= */
#memories {
    padding-top: var(--section-gap);
    padding-bottom: 0;
}

#memories h1.memories-title {
    color: #000;
    font-size: clamp(42px, 7.2vw, 103px);
    font-weight: 400;
    line-height: 102%;
    text-align: center;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: clamp(64px, 10vw, 140px);
}

/* 3-column grid: text-left | phone-center | text-right */
#memories .memories-scroll {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) var(--phone-width) minmax(220px, 1fr);
    grid-template-rows: repeat(4, minmax(80vh, auto));
    column-gap: clamp(40px, 6vw, 80px);
    row-gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 clamp(24px, 5vw, 80px) clamp(80px, 12vw, 180px);
}

#memories .memories-copy {
    display: contents;
}

/* --- Individual steps --- */
#memories .memory-step {
    width: min(100%, 300px);
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    opacity: 0.28;
    transition: opacity 0.4s ease;
}

#memories .memory-step.is-active {
    opacity: 1;
}

/* Odd steps: left column, left-aligned */
#memories .memory-step:nth-child(odd) {
    grid-column: 1;
    align-self: center;
    justify-self: end;
    text-align: left;
}

/* Even steps: right column, right-aligned */
#memories .memory-step:nth-child(even) {
    grid-column: 3;
    align-self: center;
    justify-self: start;
    text-align: left;
}

/* Explicit row placement */
#memories .memory-step:nth-child(1) {
    grid-row: 1;
}

#memories .memory-step:nth-child(2) {
    grid-row: 2;
}

#memories .memory-step:nth-child(3) {
    grid-row: 3;
}

#memories .memory-step:nth-child(4) {
    grid-row: 4;
}

/* --- Sticky phone column --- */
#memories .memories-phone-wrap {
    grid-column: 2;
    grid-row: 1 / 5;
    justify-self: center;
    align-self: stretch;
    width: var(--phone-width);
    z-index: 2;
}

#memories .sticky-phone {
    position: sticky;
    top: calc(50vh - var(--phone-height) / 2);
    width: var(--phone-width);
    height: var(--phone-height);
}

#memories .sticky-phone .phone-frame {
    position: absolute;
    inset: 0;
    width: var(--phone-width);
    height: var(--phone-height);
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
}

#memories .sticky-phone .phone-frame.is-active {
    opacity: 1;
}

/* Mobile-only inline phone images (hidden on desktop) */
#memories .mobile-inline {
    display: none;
}

/* --- Step number badge --- */
#memories .cnt-details span {
    color: #000;
    font-size: 23px;
    font-weight: 500;
    background-image: url("../images/Vector.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
}

/* --- Step headings & text --- */
#memories .cnt-details h4 {
    color: #000;
    font-size: clamp(23px, 2.1vw, 28px);
    font-weight: 500;
    line-height: 120%;
    max-width: 260px;
    width: 100%;
    margin: 18px 0 10px;
}

#memories .cnt-details p {
    color: #000;
    font-size: clamp(16px, 1.35vw, 18px);
    font-weight: 400;
    line-height: 145%;
    max-width: 286px;
    width: 100%;
}

/* Mobile-4 image override */
#memories .cnt-mobile img.mobile-four {
    width: 100%;
}

#memories .sticky-phone img.mobile-four {
    width: var(--phone-width);
    height: var(--phone-height);
}

/* =============================================
   "WHO MOMENTRA IS FOR" CAROUSEL SECTION
   ============================================= */
#who {
    width: 100%;
    overflow-x: hidden;
    padding-top: clamp(20px, 4vw, 60px);
    padding-bottom: var(--section-gap);
}

#who h2.who-title {
    color: #000;
    font-size: clamp(38px, 5vw, 65px);
    font-weight: 400;
    line-height: 102%;
    text-align: center;
    padding-bottom: clamp(56px, 8vw, 110px);
}

#who .card-main {
    width: 100%;
    margin: 0;
    padding-left: clamp(0px, 6vw, 95px);
}

#who .slick-list {
    overflow: visible;
}

#who .card {
    background-color: #fff;
    padding: clamp(12px, 1.6vw, 20px);
    border-radius: clamp(22px, 3vw, 45px);
    border: none;
    width: clamp(320px, 43vw, 574px);
    height: auto;
    min-height: clamp(410px, 44vw, 587px);
    margin-right: clamp(16px, 2vw, 24px);
    transition: transform 0.35s ease;
}

#who .card:hover {
    transform: translateY(-4px);
}

#who .card-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2136 / 1612;
    border-radius: clamp(14px, 2vw, 30px);
    margin-bottom: clamp(18px, 2.4vw, 33px);
    background-color: #f7ede2;
}

#who .card .lazy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px);
    transition: filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: filter;
}

#who .card .lazy-image.loaded {
    filter: blur(0);
}

#who .card h5.card-title {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
}

#who .card p.card-text {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    max-width: 256px;
}

/* =============================================
   EDITING / "WHY MOMENTRA IS DIFFERENT" SECTION
   ============================================= */
#editing {
    background-color: #fff;
    border-radius: clamp(28px, 4vw, 52px);
    width: min(calc(100% - (var(--section-x) * 2)), 1248px);
    min-height: clamp(420px, 47vw, 500px);
    padding: clamp(72px, 10vw, 90px) clamp(24px, 3vw, 48px) 0;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
}

#editing .editing-title h2 {
    color: #000;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 102%;
}

#editing .editing-images {
    width: calc(100% + clamp(48px, 6vw, 96px));
    margin-left: calc(-1 * clamp(24px, 3vw, 48px));
    margin-right: calc(-1 * clamp(24px, 3vw, 48px));
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    padding-top: clamp(70px, 10vw, 85px);
    position: relative;
    padding-bottom: 20px;
}

#editing .marquee-track {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
    will-change: transform;
}

#editing .editing-images img {
    width: clamp(150px, 18vw, 232px);
    height: auto;
    object-fit: cover;
}

/* =============================================
   FOOTER SECTION
   ============================================= */
#footer {
    background-color: #cad2d5;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

#footer .footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#footer .footer-bg-placeholder {
    position: absolute;
    inset: 0;
    background: url("../images/Footer-small.png") 50% 50% no-repeat;
    background-size: cover;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 1;
}

#footer .footer-bg-highres {
    position: absolute;
    inset: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

#footer .footer-bg-highres.loaded {
    opacity: 1;
}

#footer .container {
    position: relative;
    z-index: 1;
}

#footer .footer-details {
    padding-top: clamp(100px, 12vw, 180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#footer .footer-details h2 {
    color: #000;
    font-size: clamp(34px, 5vw, 65px);
    font-weight: 400;
    line-height: 102%;
    padding-bottom: clamp(36px, 6vw, 85px);
    text-align: center;
    max-width: 890px;
    width: 100%;
    margin: 0 auto;
}

#footer .download-btn-zone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: calc(clamp(90px, 14vw, 80px) - 30px);
}

#footer .footer-details a.download-btn {
    background-color: #fff;
    width: clamp(250px, 27vw, 342px);
    height: clamp(56px, 6vw, 80px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    margin-bottom: 0;
    gap: 16px;
    transition: background-color 0.3s ease;
}

#footer .footer-details a.download-btn:hover {
    background-color: #000;
    color: #fff;
}

#footer .footer-details a.download-btn img {
    width: 34px;
    height: 34px;
}

#footer .footer-details a.download-btn:hover img {
    filter: invert(1);
}

#footer .footer-details a {
    color: #000;
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 400;
    line-height: 102%;
    text-decoration: none;
}

#footer .footer-info-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    padding-bottom: clamp(70px, 11vw, 50px);
}

.footer-info-main .footer-info a {
    text-decoration: none;
}

#footer .footer-info-main .footer-info h5 {
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 25px;
}

#footer .footer-info-main .footer-info p {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 68px;
}

#footer .footer-info-main .footer-info span {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

#footer .footer-info-main .footer-qr img {
    height: 150px;
    width: 150px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
#faq {
    padding-top: var(--section-gap);
    padding-bottom: clamp(60px, 8vw, 100px);
    background-color: #FCF0E2;
}

#faq .faq-title {
    color: #000;
    font-size: clamp(38px, 5vw, 65px);
    font-weight: 400;
    line-height: 102%;
    text-align: center;
    padding-bottom: clamp(40px, 6vw, 70px);
}

#faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

#faq .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#faq .faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#faq .faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(20px, 3vw, 30px) 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

#faq .faq-trigger span {
    font-family: "Outfit", sans-serif;
    color: #000;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 500;
    line-height: 120%;
    transition: color 0.3s ease;
}

#faq .faq-trigger:hover span {
    color: rgba(0, 0, 0, 0.6);
}

#faq .faq-icon {
    width: clamp(24px, 3vw, 28px);
    height: clamp(24px, 3vw, 28px);
    color: #000;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

#faq .faq-content {
    height: 0;
    overflow: hidden;
    will-change: height;
}

#faq .faq-content p {
    font-family: "Inter", sans-serif;
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 350;
    line-height: 155%;
    padding-bottom: clamp(20px, 3vw, 30px);
    margin: 0;
}



/* =============================================================
   MOBILE  ( < 768px )
   ============================================================= */
@media screen and (max-width: 767px) {

    body {
        background-color: #cad2d5;
    }

    #banner .header-logo {
        width: 150px;
        padding-top: 20px;
    }

    /* --- Memories --- */
    #memories {
        padding-top: 50px;
    }

    #memories h1.memories-title {
        font-size: 30px;
        padding-bottom: 50px;
        padding-left: 2ch;
        padding-right: 2ch;
    }

    #memories .memories-scroll {
        display: block;
        padding: 0 16px 50px;
    }

    #memories .memories-copy {
        display: flex;
        flex-direction: column;
        gap: 50px;
        padding-top: 0;
        padding-left: 0;
    }

    #memories .memory-step {
        min-height: auto;
        opacity: 1;
        width: 100%;
        align-self: center;
        padding-top: 0;
        text-align: center;
    }

    #memories .memory-step:nth-child(odd),
    #memories .memory-step:nth-child(even) {
        justify-self: center;
        text-align: center;
    }

    #memories .cnt-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #memories .memories-phone-wrap {
        display: none;
    }

    #memories .mobile-inline {
        display: block;
        padding-top: 20px;
    }

    #memories .mobile-inline img {
        width: 220px;
        height: auto;
    }

    #memories .mobile-inline img.mobile-four {
        width: 220px;
    }

    #memories .cnt-details span {
        font-size: 17px;
        height: 40px;
        width: 40px;
    }

    #memories .cnt-details h4 {
        font-size: 22px;
        text-align: center;
        margin: 12px 0 8px;
        padding-left: 2ch;
        padding-right: 2ch;
    }

    #memories .cnt-details p {
        font-size: 17px;
        text-align: center;
    }

    /* --- Who Momentra --- */
    #who {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    #who h2.who-title {
        font-size: 30px;
        padding-bottom: 50px;
        margin: 0px;
    }

    #who .card-main {
        padding-left: 0px;
    }

    #who .card {
        padding: 10px;
        border-radius: 20px;
        width: min(344px, calc(100vw - 32px));
        min-height: 400px;
    }

    #who .card-img-wrapper {
        height: 285px;
        aspect-ratio: auto;
        border-radius: 16px;
        margin-bottom: 0;
    }

    #who .card .lazy-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #who .card h5.card-title {
        font-size: 20px;
    }

    #who .card p.card-text {
        font-size: 17px;
    }

    /* --- Editing --- */
    #editing {
        border-radius: 20px;
        width: auto;
        min-height: 280px;
        padding-top: 50px;
        padding-bottom: 40px;
        margin-left: 10px;
        margin-right: 10px;
    }

    #editing .editing-title h2 {
        font-size: 24px;
    }

    #editing .editing-images {
        padding-top: 50px;
    }

    #editing .marquee-track {
        gap: 20px;
    }

    #editing .editing-images img {

        object-fit: cover;
    }

    #footer {
        margin-top: 0;
    }

    .main-content {
        border-radius: 0 0 35px 35px;
    }

    #footer .footer-details {
        padding-top: 60px;
    }

    #footer .footer-details h2 {
        font-size: 30px;
        padding-bottom: 30px;
        width: 100%;
        max-width: 250px;
    }

    #footer .download-btn-zone {
        margin-bottom: calc(109px - 30px);
    }

    #footer .footer-details a.download-btn {
        width: 262px;
        height: 50px;
        margin-bottom: 0;
        gap: 10px;
    }

    #footer .footer-details a.download-btn img {
        width: 25px;
        height: 25px;
    }

    #faq {
        padding-left: 2ch;
        padding-right: 2ch;
    }

    #footer .footer-details a {
        font-size: 27px;
    }

    #footer .footer-info-main .footer-info h5 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    #footer .footer-info-main .footer-info p {
        font-size: 17px;
        margin-bottom: 45px;
    }

    #footer .footer-info-main .footer-qr img {
        height: 100px;
        width: 100px;
    }

    #footer .footer-info-main {
        align-items: flex-end;
    }
}

/* =============================================================
   TABLET  ( 768px – 992px )
   ============================================================= */
@media screen and (min-width: 768px) and (max-width: 992px) {

    body {
        background-color: #cad2d5;
    }

    #banner .header-logo {
        width: 150px;
        padding-top: 20px;
    }

    /* --- Memories --- */
    #memories {
        padding-top: 50px;
    }

    #memories h1.memories-title {
        font-size: 30px;
        padding-bottom: 50px;
    }

    #memories .memories-scroll {
        display: block;
        padding: 0 20px 50px;
    }

    #memories .memories-copy {
        display: flex;
        flex-direction: column;
        gap: 50px;
        padding-top: 0;
        padding-left: 0;
    }

    #memories .memory-step {
        min-height: auto;
        opacity: 1;
        width: 100%;
        align-self: center;
        padding-top: 0;
        text-align: center;
    }

    #memories .memory-step:nth-child(odd),
    #memories .memory-step:nth-child(even) {
        justify-self: center;
        text-align: center;
    }

    #memories .cnt-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #memories .memories-phone-wrap {
        display: none;
    }

    #memories .mobile-inline {
        display: block;
        padding-top: 20px;
    }

    #memories .mobile-inline img {
        width: 260px;
        height: auto;
    }

    #memories .mobile-inline img.mobile-four {
        width: 260px;
    }

    #memories .cnt-details span {
        font-size: 17px;
        height: 40px;
        width: 40px;
    }

    #memories .cnt-details h4 {
        font-size: 20px;
        text-align: center;
        margin: 12px 0 8px;
    }

    #memories .cnt-details p {
        font-size: 17px;
        text-align: center;
        max-width: 280px;
    }

    /* --- Who Momentra --- */
    #who {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    #who h2.who-title {
        font-size: 30px;
        padding-bottom: 50px;
        margin: 0px;
    }

    #who .card-main {
        padding-left: 0px;
    }

    #who .card {
        padding: 10px;
        border-radius: 20px;
        width: min(344px, calc(100vw - 32px));
        min-height: 400px;
    }

    #who .card-img-wrapper {
        height: 285px;
        aspect-ratio: auto;
        border-radius: 16px;
        margin-bottom: 0;
    }

    #who .card .lazy-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #who .card h5.card-title {
        font-size: 20px;
    }

    #who .card p.card-text {
        font-size: 17px;
    }

    /* --- Editing --- */
    #editing {
        border-radius: 20px;
        width: auto;
        min-height: 317px;
        padding-top: 50px;
        padding-bottom: 40px;
        margin-left: 10px;
        margin-right: 10px;
    }

    #editing .editing-title h2 {
        font-size: 30px;
    }

    #editing .editing-images {
        padding-top: 50px;
    }

    #editing .marquee-track {
        gap: 20px;
    }

    #editing .editing-images img {
        width: 160px;
        height: 140px;
        object-fit: cover;
    }

    #footer {
        margin-top: 0;
    }

    .main-content {
        border-radius: 0 0 50px 50px;
    }

    #footer .footer-details {
        padding-top: 80px;
    }

    #footer .footer-details h2 {
        font-size: 30px;
        padding-bottom: 30px;
        width: 100%;
        max-width: 100%;
        padding-left: 2ch;
        padding-right: 2ch;
    }

    #footer .download-btn-zone {
        margin-bottom: calc(109px - 30px);
    }

    #footer .footer-details a.download-btn {
        width: 262px;
        height: 50px;
        margin-bottom: 0;
        gap: 10px;
    }

    #footer .footer-details a.download-btn img {
        width: 25px;
        height: 25px;
    }

    #footer .footer-details a {
        font-size: 27px;
    }

    #footer .footer-info-main .footer-info h5 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    #footer .footer-info-main .footer-info p {
        font-size: 17px;
        margin-bottom: 45px;
    }

    #footer .footer-info-main .footer-qr img {
        height: 100px;
        width: 100px;
    }

    #footer .footer-info-main {
        align-items: flex-end;
    }
}

/* =============================================
   QR MODAL STYLE
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.modal-overlay.is-open {
    pointer-events: auto;
}

.modal-box {
    background: #fff;
    border-radius: clamp(24px, 3vw, 36px);
    padding: clamp(32px, 4vw, 48px);
    width: min(calc(100% - 32px), 420px);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-close {
    position: absolute;
    top: clamp(16px, 2vw, 24px);
    right: clamp(16px, 2vw, 24px);
    background: rgba(0, 0, 0, 0.04);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    transition: background-color 0.2s, transform 0.2s;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-content-wrap {
    text-align: center;
}

.modal-content-wrap h4 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.modal-content-wrap p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 140%;
    margin-bottom: 24px;
}

.modal-content-wrap .qr-container {
    background: #FCF0E2;
    padding: 24px;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.modal-content-wrap .qr-container img {
    width: 180px;
    height: 180px;
}

#footer .footer-qr-link {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

#footer .footer-qr-link:hover {
    transform: scale(1.06);
}

/* =============================================================
   COMPACT MOBILE DECORATION & LAYOUT STACK ( < 480px )
   ============================================================= */
@media screen and (max-width: 479px) {
    #footer .footer-info-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    #footer .footer-info-main .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-info-main .footer-info p {
        margin-bottom: 20px;
    }
}

/* =============================================
   SUBPAGE & LEGAL COLUMNS STYLING
   ============================================= */

/* Footer Column Restructuring */
.footer-links-columns {
    display: flex;
    gap: clamp(40px, 8vw, 120px);
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#footer .footer-info-main .footer-info .footer-column h5 {
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 20px;
}

.footer-column a {
    text-decoration: none;
}

#footer .footer-info-main .footer-info .footer-column a p {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

#footer .footer-info-main .footer-info .footer-column a:hover p {
    color: rgba(0, 0, 0, 0.6);
}

#footer .footer-info-main .footer-info span {
    display: block;
    margin-top: 20px;
}

/* Subpage Header & Navigation */
.subpage-nav {
    width: 100%;
    padding-top: clamp(24px, 4vw, 50px);
    padding-bottom: clamp(20px, 3vw, 30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.subpage-nav .header-logo img {
    width: clamp(130px, 15vw, 180px);
    height: auto;
}

.back-home-btn {
    font-family: "Outfit", sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 40px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.back-home-btn svg {
    transition: transform 0.3s ease;
}

.back-home-btn:hover {
    background-color: #FCF0E2;
    border-color: #FCF0E2;
    color: #000;
}

.back-home-btn:hover svg {
    transform: translateX(-4px);
}

/* Policy Content Layout */
.policy-content-section {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(60px, 8vw, 100px);
    background-color: #FCF0E2;
}

.policy-subtitle {
    font-family: "Outfit", sans-serif;
    color: rgba(0, 0, 0, 0.4);
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 16px;
}

.policy-title {
    color: #000;
    font-size: clamp(38px, 6vw, 65px);
    font-weight: 400;
    line-height: 102%;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.policy-rich-text {
    font-family: "Inter", sans-serif;
}

.policy-rich-text p {
    color: rgba(0, 0, 0, 0.75);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 350;
    line-height: 160%;
    margin-bottom: 24px;
}

.policy-rich-text h2 {
    font-family: "Outfit", sans-serif;
    color: #000;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 120%;
    margin-top: clamp(40px, 6vw, 60px);
    margin-bottom: 20px;
}

.policy-rich-text h3 {
    font-family: "Outfit", sans-serif;
    color: #000;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 500;
    line-height: 120%;
    margin-top: 30px;
    margin-bottom: 16px;
}

.policy-rich-text ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.policy-rich-text li {
    font-family: "Inter", sans-serif;
    color: rgba(0, 0, 0, 0.75);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 350;
    line-height: 160%;
    margin-bottom: 12px;
}

.policy-rich-text a {
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.policy-rich-text a:hover {
    color: rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(0, 0, 0, 0.6);
}

/* Responsive Footer Layout Modifications */
@media screen and (max-width: 767px) {
    #footer .footer-info-main .footer-info p {
        margin-bottom: 0px; /* Overridden for column layout */
    }

    .footer-links-columns {
        flex-direction: row;
        justify-content: flex-start;
        gap: 60px;
        margin-bottom: 30px;
    }

    #footer .footer-info-main .footer-info .footer-column h5 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    #footer .footer-info-main .footer-info .footer-column a p {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 479px) {
    .footer-links-columns {
        justify-content: center;
        gap: 40px;
    }

    .footer-column {
        align-items: center;
    }
}