@font-face {
    font-family: 'BernardMT';
    src: url('/fonts/Times New Roman Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GaramondRegular';
    src: url('/fonts/Garamond - Garamond - Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ImpactFont';
    src: url('/fonts/impact.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'KumarOne';
    src: url('/fonts/KumarOne-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LemonMilkBold';
    src: url('/fonts/LEMONMILK-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MonteStella';
    src: url('/fonts/MonteStella_Trial_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QasiraFont';
    src: url('/fonts/Qasira.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QuintessentialFont';
    src: url('/fonts/Quintessential-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TimesNewRomanLocal';
    src: url('/fonts/Times New Roman Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary-terracotta-700: #C4351D;
    --color-primary-terracotta-700-rgb: 196, 53, 29;
}

/* Fallback Font Stacks */
body {
    font-family: 'GaramondRegular', 'Garamond', 'Times New Roman', serif;
    background: #FAF8E9;
    color: #111;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.logo,
.footer-logo {
    font-family: 'ImpactFont', 'Impact', sans-serif;
}

.hero h1,
.why-head h2,
.how-header h2,
.faq-top h2,
.main-section-title {
    font-family: 'BernardMT', 'Georgia', serif;
}

.tag,
.app-badge,
.process-cardm h4 {
    font-family: 'TimesNewRomanLocal', 'Times New Roman', sans-serif;
}

.feature-strip,
.footer-links a,
.socials a {
    font-family: 'MonteStella', 'Arial Narrow', sans-serif;
}

.process-card h4,
.pg-content h3 {
    font-family: 'KumarOne', 'Impact', cursive, sans-serif;
}

.nav-links a,
.btn,
.store a,
.talk-btn,
.footer-links a,
.folder-tab {
    font-family: 'LemonMilkBold', 'Arial Black', sans-serif;
}

.process-card p,
.faq-top p,
.faq-content,
.contact-left p,
.app-text p {
    font-family: 'QuintessentialFont', 'Georgia', serif;
}

.faq-item summary,
.process-column .process-cardm p,
.process-column .process-card p {
    font-family: 'TimesNewRomanLocal', 'Times New Roman', serif;
}

/* ================= GLOBAL RESET ================= */

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

/* ================= TOP BAR & NAVBAR ================= */

.company-top-bar {
    width: 100%;
    background: var(--color-primary-terracotta-700);
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.company-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
}

.company-line {
    font-size: clamp(12px, 2.2vw, 17px);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.company-line strong {
    color: #FFF5C2;
}

.company-subline {
    margin-top: 4px;
    font-size: clamp(10px, 1.8vw, 12px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.company-subline strong {
    color: #FFF5C2;
}

.navbar {
    background: #FAF8E9;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #E2DEC3;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-20px);
}

.logo-image {
    width: 116px;
    height: 58px;
    display: block;
    object-fit: contain;
}

.logo-badge {
    background: #FFFCE5;
    border: 2px solid var(--color-primary-terracotta-700);
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-badge span:first-child {
    font-family: 'ImpactFont', 'Impact', sans-serif;
    font-size: 18px;
    color: var(--color-primary-terracotta-700);
    line-height: 1;
}

.logo-badge span:last-child {
    font-size: 11px;
    font-weight: bold;
    color: #E88F2A;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    transition: opacity 0.2s;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-download {
    background: var(--color-primary-terracotta-700);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 12px rgba(var(--color-primary-terracotta-700-rgb), 0.25);
    white-space: nowrap;
}

.btn-download:hover {
    background: var(--color-primary-terracotta-700);
    filter: brightness(0.9);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--color-primary-terracotta-700);
    border-radius: 2px;
}

/* ================= HERO SECTION ================= */

.hero {
    text-align: center;
    background-color: #FAF8E9;
    background-image:
        linear-gradient(90deg, rgba(220, 215, 190, 0.15) 1px, transparent 1px),
        linear-gradient(0deg, rgba(220, 215, 190, 0.15) 1px, transparent 1px);
    background-size: 40px 20px;
    padding: 30px 0 25px;
    /* 25px bottom padding for gap below phone */
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tag {
    display: inline-block;
    background: #F5A623;
    padding: 5px 5px 5px 5px;
    margin-bottom: 18px;
    color: #0c0a0a;
    font-weight: 200;
    height: 30px;
    border-left: 2px solid #111;
    box-shadow: 0.5px 2.4px 0px #111;
    letter-spacing: 0.3px;
    font-family: Helvetica, Arial, sans-serif;
    transform: rotate(-2deg);
    width: fit-content;
}
.hero h1 {
    font-family: "Clash Display", sans-serif;
    font-size: clamp(20px, 5.5vw, 38px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: 1.1px;
    color: hsla(48, 100%, 53%, 0.989);
    max-width: 900px;
    margin: 0 auto;
    /* Black/brown outline */
    -webkit-text-stroke: 0.5px #060500f9;
    /* Poster-style depth */
    text-shadow:
        1px 1px 0 #2b1b03;
}
.hero p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(17px, 1.5vw, 27px);
    font-weight: 600;
    max-width: 560px;
    margin: 16px auto 0;
    color: #534a4a;
    line-height: 1.4;
    padding: 0 10px;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--color-primary-terracotta-700);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(var(--color-primary-terracotta-700-rgb), 0.3);
    transition: transform 0.2s, background 0.2s;
}

.hero-cta-btn:hover {
    background: var(--color-primary-terracotta-700);
    filter: brightness(0.9);
    transform: translateY(-2deg);
}

/* ================= STAGGERED POSTER STAGE ================= */

.phone-section {
    position: relative;
    width: 100%;
    margin: 10px auto 30px;
    /* 30px margin-bottom for gap below phone */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-inline: auto;
}

/* Central Mobile Phone */
.phone {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.phone-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* Clean edge elevation — no heavy bottom blob */
    filter:
        drop-shadow(0 0 1px rgba(0, 0, 0, 0.35))
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18))
        drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}

/* Status Bar */
.phone-status-bar {
    height: 20px;
    padding: 3px 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 7.5px;
    font-weight: 800;
    color: #111;
    z-index: 15;
}

.status-notch {
    width: 36px;
    height: 9px;
    background: #000;
    border-radius: 6px;
    margin: 0 auto;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 6.5px;
}

/* App Header Row */
.phone-app-header {
    padding: 2px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-brand-title {
    font-family: 'ImpactFont', 'Impact', sans-serif;
    font-size: 19px;
    color: var(--color-primary-terracotta-700);
    letter-spacing: -0.3px;
    line-height: 1;
}

.phone-lang-badge {
    width: 18px;
    height: 18px;
    background: #FAF8E9;
    border: 1.5px solid var(--color-primary-terracotta-700);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    color: var(--color-primary-terracotta-700);
}

/* Location Row */
.phone-location-row {
    padding: 2px 10px 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    color: #222;
    font-weight: 700;
}

.loc-pin-icon {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(var(--color-primary-terracotta-700-rgb), 0.08);
    border: 1px solid var(--color-primary-terracotta-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-terracotta-700);
    font-size: 7px;
    flex-shrink: 0;
}

.loc-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Refer & Win Banner Card */
.phone-refer-card {
    margin: 2px 8px 4px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.25);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.refer-card-top {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
    padding: 6px 8px 4px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.refer-text-wrap {
    flex: 1;
}

.refer-text-wrap h4 {
    font-size: 10px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

.refer-text-wrap p {
    font-size: 5.5px;
    line-height: 1.25;
    color: #E8F5E9;
    margin-bottom: 5px;
    max-width: 105px;
}

.btn-refer-now {
    display: inline-block;
    background: #66BB6A;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 6px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.refer-illustration-wrap {
    width: 55px;
    height: 45px;
    flex-shrink: 0;
}

.refer-credits-bar {
    background: #E8F8F0;
    padding: 3px 8px;
    font-size: 6.5px;
    color: #1B5E20;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    border-top: 1px solid rgba(46, 125, 50, 0.15);
}

.wallet-icon-box {
    width: 11px;
    height: 9px;
    background: #2E7D32;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 5px;
}

/* Segmented Tab Switcher */
.phone-tab-switcher {
    margin: 4px 10px 4px;
    background: #FFFCE5;
    border: 1.5px solid var(--color-primary-terracotta-700);
    border-radius: 999px;
    padding: 2px;
    display: flex;
}

.tab-switch-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 4px 0;
    font-size: 9px;
    font-weight: 900;
    color: var(--color-primary-terracotta-700);
    border-radius: 999px;
    text-align: center;
}

.tab-switch-btn.active {
    background: var(--color-primary-terracotta-700);
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(var(--color-primary-terracotta-700-rgb), 0.25);
}

/* Results Row */
.phone-results-row {
    padding: 1px 12px 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 7.5px;
    font-weight: 700;
    color: #333;
}

.filter-icon-btn {
    font-size: 9px;
    color: var(--color-primary-terracotta-700);
    font-weight: bold;
}

/* Phone Cards Grid */
.phone-cards-grid {
    display: flex;
    gap: 6px;
    padding: 2px 8px 6px;
    flex: 1;
}

.phone-mini-card {
    flex: 1;
    border-radius: 6px;
    padding: 0;
    height: 128px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.phone-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Center FAB Button */
.phone-floating-fab {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: #F7BA35;
    border: 2.5px solid var(--color-primary-terracotta-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary-terracotta-700);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 25;
}

/* Bottom Nav Bar */
.phone-bottom-nav {
    height: 36px;
    background: var(--color-primary-terracotta-700);
    border-radius: 14px 14px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2px;
    position: relative;
    z-index: 20;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    font-size: 6px;
    font-weight: 800;
    color: #FFCDD2;
    flex: 1;
}

.bottom-nav-item.active {
    color: #FFFFFF;
}

.bottom-nav-icon {
    font-size: 9px;
    line-height: 1;
}

/* Universal Poster Component */
.poster-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.2;
    transform: none;
    transition: all 0.3s ease;
   }

.poster-card img.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= DESKTOP SPECIFIC LAYOUT ================= */

@media (min-width: 901px) {
    .phone-section {
        max-width: 1240px;
        height: 415px;
        overflow: visible;
        padding: 0 20px;
    }

    .phone {
        width: 235px;
        height: 435px;
    }

    .poster-card {
        width: 160px;
        height: 260px;
        padding: 0;
    }

    .poster-far-left {
        left: -11px;
        bottom: 120px;
        z-index: 2;
        opacity: 1;
        transform: rotate(-6deg);
        top: 33px;
    }

    .poster-left-high {
        left: 190px;
        bottom: 10px;
        z-index: 3;
        transform: rotate(6deg);
    }

    .poster-left-low {
        left: 400px;
        bottom: 120px;
        z-index: 4;
        transform: rotate(-6deg);
    }

    .poster-right-low {
        right: 399px;
        bottom: 25px;
        z-index: 4;
        transform: rotate(6deg);
    }

    .poster-right-high {
        right: 195px;
        bottom: 140px;
        z-index: 3;
        transform: rotate(-6deg);
    }

    .poster-far-right {
        right: -10px;
        bottom: 10px;
        z-index: 2;
        opacity: 1;
        transform: rotate(-6deg);
    }
}

/* ================= MOBILE SPECIFIC LAYOUT ================= */


@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-cta-btn {
        display: none !important;
    }

    .phone-section {
        max-width: 100%;
        height: clamp(330px, 52vw, 420px);
        overflow: hidden;
        margin-top: -24px;
        margin-bottom: 18px;
    }

    .phone {
        width: clamp(150px, 32vw, 185px);
        height: clamp(280px, 18vw, 330px);
        z-index: 10;
        margin-left: auto;
        margin-right: auto;
    }

    .poster-card {
        padding: 0;
    }
/* 1st Poster */
.poster-far-left {
    width: clamp(56px, 15vw, 88px);
    height: clamp(82px, 27vw, 140px);
   left: calc(0px - clamp(60px, 12vw, 75px) + 6px);
    top: calc(clamp(55px, 14vw, 95px) + 36px);
    margin-top: -10px;
    bottom: auto;
    z-index: 2;
    transform: rotate(-2deg);
}

/* 2nd Poster */
.poster-left-high {
    width: clamp(58px, 15.5vw, 92px);
    height: clamp(82px, 27vw, 140px);
    left: calc(50% - clamp(125px, 32vw, 180px) + 26px - 5px);
    top: calc(clamp(55px, 14vw, 95px) + 36px);
    bottom: auto;
    z-index: 2;
    margin-top: -14px;
    transform: rotate(-3deg);
}

.poster-left-low {
    width: clamp(60px, 16vw, 95px);
    height: clamp(82px, 27vw, 140px);
    left: calc(50% - clamp(168px, 44vw, 230px) - 5px);
    bottom: calc(clamp(115px, 27vw, 165px) - 90px);
    z-index: 4;
    margin-top: -4px;
}
/* 4th Poster */
.poster-right-low {
    width: clamp(58px, 15.5vw, 92px);
    height: clamp(82px, 27vw, 140px);
    right: calc(50% - clamp(96px, 9vw, 165px) - 20px);
   bottom: calc(clamp(50px, 5vw, 50px) - 20px);
    z-index: 3;
    transform: rotate(-3deg);
}

/* 5th Poster */
.poster-right-high {
    width: clamp(60px, 16vw, 95px);
    height: clamp(82px, 27vw, 140px);
    right: calc(50% - clamp(168px, 45vw, 230px));
    top: calc(clamp(55px, 14vw, 95px) + 22px);
    bottom: auto;
    transform: rotate(2deg);
    z-index: 4;
}

/* 6th Poster */
.poster-far-right {
    width: clamp(56px, 15vw, 88px);
    height: clamp(82px, 27vw, 140px);
    right: calc(0px - clamp(59px, 14vw, 86px) + 10px);
   bottom: calc(clamp(15px, 14vw, 45px) - 10px);
    z-index: 2;
     transform: rotate(-2deg);
}

}

/* Exact layout tuning for 390px wide screens */
@media (max-width: 390px) {

    .phone-section {
        width: 100%;
        max-width: 390px;
        height: 330px;
        overflow: hidden;
        margin-bottom: 4px;
    }

    /* Smaller Phone */
    .phone {
        width: 140px;
        height: 290px;
        z-index: 10;
        margin-left: auto;
        margin-right: auto;
    }

    /* 1st Poster - Far Left */
    .poster-far-left {
        width: clamp(56px, 15vw, 88px);
        height: clamp(82px, 27vw, 140px);
        left: -44px;
        top: 108px;
        margin-top: 0;
        z-index: 2;
        transform: rotate(-3deg);
    }

    /* 2nd Poster - Left High */
    .poster-left-high {
        width: clamp(58px, 15.5vw, 92px);
        height: clamp(82px, 27vw, 140px);
        left: calc(50% - clamp(125px, 32vw, 180px) + 26px - 5px);
        top: calc(clamp(55px, 14vw, 95px) + 56px);
        bottom: auto;
        z-index: 3;
        transform: rotate(-6deg);
    }

    /* 3rd Poster - Left Low */
    .poster-left-low {
        width: clamp(58px, 15.5vw, 92px);
        height: clamp(82px, 27vw, 140px);
        left: calc(50% - clamp(168px, 44vw, 230px) + 1px);
        bottom: 40px;
        z-index: 4;
        transform: rotate(2deg);
    }

    /* Right Low */
    .poster-right-low {
        width: clamp(56px, 15vw, 88px);
        height: clamp(82px, 27vw, 140px);
        right: 92px;
        bottom: 48px;
        z-index: 3;
        transform: rotate(6deg);
    }

    /* Right High */
    .poster-right-high {
        width: clamp(56px, 15vw, 88px);
        height: clamp(82px, 27vw, 140px);
        right: 21px;
        top: 108px;
        bottom: auto;
        z-index: 4;
        
        transform: rotate(2deg);
    }

    /* Far Right */
    .poster-far-right {
        width: clamp(56px, 15vw, 88px);
        height: clamp(82px, 27vw, 140px);
        right: -40px;
        bottom: 43px;
        z-index: 2;
        
        transform: rotate(-2deg);
    }
}



@media (max-width: 360px) {

    .phone-section {
        width: 100%;
        max-width: 360px;
        height: 315px;
        overflow: hidden;
        margin-top: -10px;
        margin-bottom: 4px;
    }

    /* Smaller Phone */
    .phone {
        width: 130px;
        height: 275px;
        z-index: 10;
        margin-left: auto;
        margin-right: auto;
    }

    /* 1st Poster - Far Left */
    .poster-far-left {
        width: 62px;
        height: 111px;
        left: -50px;
        top: 100px;
        margin-top: 0;
        z-index: 2;
    }

    /* 2nd Poster - Left High */
    .poster-left-high {
        width: 64px;
        height: 114px;
        left: 98px;
        top: 100px;
        bottom: auto;
        z-index: 3;
        transform: rotate(-6deg);
    }

    /* 3rd Poster - Left Low */
    .poster-left-low {
        width: 66px;
        height: 117px;
        left: 21px;
        bottom: 32px;
        z-index: 4;
        transform: rotate(2deg);
    }

    /* Right Low */
    .poster-right-low {
        width: 64px;
        height: 114px;
        right: 115px;
        bottom: 43px;
        z-index: 3;
        transform: rotate(6deg);
    }

    /* Right High */
    .poster-right-high {
        width: 66px;
        height: 117px;
        right: 19px;
        top: 100px;
        bottom: auto;
        z-index: 4;
        transform: rotate(2deg);
    }

    /* Far Right */
    .poster-far-right {
        width: 62px;
        height: 111px;
        right: -50px;
        bottom: 38px;
        z-index: 2;
    }
}


@media screen and (min-width: 370px) and (max-width: 375px) and (min-height: 660px) and (max-height: 680px) {

    .phone-section {
        width: 100%;
        height: 330px !important;
        max-width: 375px;
        overflow: hidden;
        margin-top: -13px !important;
        margin-bottom: 6px;
    }

    /* PHONE */
    .phone {
        width: 138px !important;
        height: 295px !important;
        z-index: 10;
        margin-left: auto;
        margin-right: auto;
    }

    /* FAR LEFT */
    .poster-far-left {
        width: 61px !important;
        height: 109px !important;
        left: -50px !important;
        top: 100px !important;
        bottom: auto !important;
        margin-top: 0 !important;
        z-index: 2;
    }

    /* LEFT HIGH */
    .poster-left-high {
        width: 63px !important;
        height: 112px !important;
        left: 100px !important;
        top: 100px !important;
        bottom: auto !important;
        z-index: 3;
        transform: rotate(-6deg);
    }

    /* LEFT LOW */
    .poster-left-low {
        width: 65px !important;
        height: 115px !important;
        left: 26px !important;
        bottom: 30px !important;
        top: auto !important;
        z-index: 4;
    }

    /* RIGHT LOW */
    .poster-right-low {
        width: 63px !important;
        height: 112px !important;
        right: 95px !important;
        bottom: 42px !important;
        top: auto !important;
        z-index: 3;
        transform: rotate(6deg);
    }

    /* RIGHT HIGH */
    .poster-right-high {
        width: 65px !important;
        height: 115px !important;
        right: 8px !important;
        top: 100px !important;
        bottom: auto !important;
        z-index: 4;
    }

    /* FAR RIGHT */
    .poster-far-right {
        width: 61px !important;
        height: 109px !important;
        right: -50px !important;
        bottom: 37px !important;
        top: auto !important;
        z-index: 2;
    }
}

/* ================= FEATURE STRIP ================= */

.feature-strip {
    min-height: 52px;
    background: var(--color-primary-terracotta-700);
    display: block;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    padding: 10px 15px;
    letter-spacing: 0.5px;
}

.feature-strip-track {
    display: flex;
    width: max-content;
    animation: featureStripMarquee 24s linear infinite;
}

.feature-strip-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding-right: 14px;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.feature-strip .dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #F5A623;
    border-radius: 50%;
}

.feature-strip:hover .feature-strip-track {
    animation-play-state: paused;
}

@keyframes featureStripMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .feature-strip-track {
        animation: none;
    }
}

/* ================= APP DOWNLOAD / CREASED PAPER SECTION ================= */

.app-crease-section {
    background-image: url('/images/downloadbg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 14px 28px rgba(95, 44, 9, 0.18);
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin-top: 30px;
}

.app-crease-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,0,0,0.03));
    pointer-events: none;
}

.app-crease-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: var(--color-primary-terracotta-700);
    color: #fff;
    padding: 8px 18px;
    transform: rotate(-3deg);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.9);
    margin-bottom: 18px;
}
.app-crease-section h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(38px, 5.5vw, 44px);
    font-weight: 900;
    line-height: 1.06;
    color: #111;
    max-width: 320px;
    margin: 0 auto 12px;
    letter-spacing: -0.6px;
    text-shadow: none;
}

.app-crease-section p {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-family: "Clash Display", sans-serif;
    color: #222;
    max-width: 300px;
    margin: 0 auto 18px;
    line-height: 1.45;
    opacity: 0.92;
}

.app-store-btns {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 4px 0 rgba(17, 17, 17, 0.9);
    border: 2px solid #111;
    min-width: 150px;
    width: 48%;
    max-width: 180px;
    text-align: left;
    transition: transform 0.2s ease;
}

.app-store-btn:hover {
    transform: translateY(-1px);
}

.app-store-btn svg {
    flex-shrink: 0;
}

.app-store-btn .btn-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-btn .btn-text-small {
    font-size: 7.5px;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
    display: block;
    line-height: 1.1;
    letter-spacing: 0.2px;
}

.app-store-btn .btn-text-large {
    font-size: 11px;
    font-weight: 900;
    color: #111;
    display: block;
    line-height: 1.2;
    margin-top: 1px;
}

.apple-circle-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-icon-play {
    width: 25px;
    height: 25px;
}

/* ================= WHY POSTERGALI SECTION ================= */

.why-section {
   
    background: #FAF8E9;
}

.sub-header-label {
    text-align: center;
    font-size: 22px;
    color: #555;
    margin-bottom: 4px;
    font-family: sans-serif;
    font-weight: 600;
}

.main-section-title {
    text-align: center;
    font-size: clamp(20px, 5.2vw, 28px);
    color: #A3660C;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 22px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.folder-container {
    max-width: 420px;
    margin: 0 auto;
}

.folder-tabs {
    display: flex;
    gap: 0;
    padding-left: 0;
    margin-bottom: -1px;
}

.folder-tab {
    padding: 5px 20px 6px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    clip-path: polygon(9% 0, 88% 0, 100% 100%, 0 100%);
    margin-right: 0;
    min-width: 108px;
    position: relative;
    z-index: 1;
}

.folder-tab.tab-vendors {
    background: #F8E3B0;
    color: #222;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.folder-tab.tab-locals {
    background: var(--color-primary-terracotta-700);
    color: #fff;
}

.folder-tab.tab-hiring {
    background: var(--color-primary-terracotta-700);
    color: #fff;
}

.folder-tab[aria-selected="false"] {
    opacity: 0.72;
}

.folder-tab[aria-selected="true"] {
    opacity: 1;
}

.folder-card {
    background: #F8E3B0;
    border-radius: 0 16px 16px 16px;
    border-top-left-radius: 0px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.folder-media-box {
    width: 100%;
    height: 195px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #1e1208;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.folder-content-body {
    padding-top: 14px;
}

.folder-content-body h3 {
    font-size: 16px;
    font-weight: 900;
    color: #111;
    margin-bottom: 6px;
}

.folder-content-body p {
    font-size: 11.5px;
    color: #333;
    line-height: 1.45;
    margin-bottom: 14px;
}

.btn-folder-cta {
    width: 100%;
    background: linear-gradient(180deg, #F7BA35 0%, #EA9C1B 100%);
    border: 1px solid #D9880D;
    color: #fff;
    padding: 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 4px 10px rgba(234, 156, 27, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.feature-grid-sub {
    max-width: 380px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #444;
    line-height: 1.7;
    font-weight: 600;
}

.feature-grid-sub .green-highlight {
    color: #2E7D32;
    font-weight: 800;
}

/* ================= WHO IS IT FOR SECTION ================= */

.who-section {
   
    background: #FAF8E9;
}

.red-hero-card {
    width: 100%;
    max-width: none;
   
    background: var(--color-primary-terracotta-700);
    border-radius: 14px;
    padding: 18px 10px 14px;
    box-shadow: 0 12px 30px rgba(var(--color-primary-terracotta-700-rgb), 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.persona-carousel {
    width: 100%;
    position: relative;
    outline: none;
}

.persona-slides {
    width: 100%;
    height: clamp(270px, 108vw, 420px);
    position: relative;
}

.persona-slide {
    position: absolute;
    width: min(62%, 220px);
    height: auto;
    left: 50%;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.9) translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.persona-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1) translateY(0);
    z-index: 3;
}

.persona-slide.next,
.persona-slide.previous {
    opacity: 0.45;
    z-index: 2;
}

.persona-slide.next {
    transform: translateX(-38%) scale(0.86) translateY(22px);
}

.persona-slide.previous {
    transform: translateX(-62%) scale(0.86) translateY(22px);
}

.raghav-phone-frame {
    width: 210px;
    background: #ffffff;
    border-radius: 28px;
    border: 4px solid #1a1a1a;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    position: relative;
}

.phone-notch {
    width: 50px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 10px;
    margin: 0 auto 8px;
}

.raghav-illustration {
    width: 100%;
    height: 130px;
    background: #FAF6ED;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.raghav-name-tag {
    text-align: center;
    margin-bottom: 8px;
}

.raghav-name-tag strong {
    display: block;
    font-size: 11px;
    color: #111;
    line-height: 1.1;
}

.raghav-name-tag span {
    font-size: 9px;
    color: #666;
}

.box-challenge {
    background: rgba(var(--color-primary-terracotta-700-rgb), 0.08);
    border: 1px solid rgba(var(--color-primary-terracotta-700-rgb), 0.28);
    border-radius: 10px;
    padding: 6px 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.box-challenge .icon {
    color: var(--color-primary-terracotta-700);
    font-size: 12px;
    line-height: 1;
}

.box-challenge .box-text {
    font-size: 8.5px;
    color: var(--color-primary-terracotta-700);
    line-height: 1.25;
}

.box-challenge .box-text b {
    color: var(--color-primary-terracotta-700);
    display: block;
    font-size: 9px;
}

.box-solution {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 10px;
    padding: 6px 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.box-solution .icon {
    color: #2E7D32;
    font-size: 12px;
    line-height: 1;
}

.box-solution .box-text {
    font-size: 8.5px;
    color: #1B5E20;
    line-height: 1.25;
}

.box-solution .box-text b {
    color: #1B5E20;
    display: block;
    font-size: 9px;
}

.dots-indicator {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}

.dot-item {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.dot-item.active {
    background: #FFE0B2;
}

/* ================= FIVE PROMISES SECTION ================= */

.promises-section {
    padding: 30px 16px 40px;
    background: #FAF8E9;
}

.promises-section .sub-header-label {
    font-size: 12px;
}

.promises-section .main-section-title {
    font-size: clamp(14px, 4.2vw, 24px);
}

.stack-cards-wrapper {
    max-width: 360px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
}

.stack-card {
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06), 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    position: relative;
    transition: transform 0.2s ease;
}

.stack-card:first-child {
    margin-top: 0;
}

.stack-card .card-num {
    font-size: 14px;
    font-weight: 900;
    opacity: 0.7;
    margin-bottom: 2px;
    font-family: monospace;
}

.stack-card h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 3px;
    line-height: 1.25;
}

.stack-card p {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.35;
}

.card-1 {
    background: #FFF9E6;
    color: #5C4A00;
    z-index: 1;
}

.card-2 {
    background: #FFE8B2;
    color: #523D00;
    z-index: 2;
}

.card-3 {
    background: #FFD980;
    color: #473200;
    z-index: 3;
}

.card-4 {
    background: #FFC84D;
    color: #3D2800;
    z-index: 4;
}

.card-5 {
    background: #F7B228;
    color: #2E1B00;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(247, 178, 40, 0.4);
}

/* ================= HOW IT WORKS (STAMP CAROUSEL) ================= */

.how-works-section {
    padding: 20px 16px 40px;
    background: #FAF8E9;
    text-align: center;
}

.how-works-section p {
    font-size: 22px;
    color: #444;
    max-width: 320px;
    margin: 0 auto 20px;
}

.hands-phone-graphic {
    width: 180px;
    height: 170px;
    margin: 0 auto 15px;
    position: relative;
}

/* Serrated Stamp Ticket Card */
.stamp-card-container {
    max-width: 310px;
    margin: 0 auto;
    position: relative;
}

.stamp-card {
    background: #358A50;
    color: #fff;
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 22px rgba(53, 138, 80, 0.25);
    border: 2px dashed rgba(255, 255, 255, 0.4);
}

.stamp-card h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
}

.stamp-card p {
    font-size: 11px;
    line-height: 1.45;
    color: #E8F5E9;
    margin: 0;
}

.stamp-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.stamp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D9D2B5;
}

.stamp-dot.active {
    background: #F7BA35;
}

/* ================= GET IN TOUCH (CONTACT SECTION) ================= */

.contact-section {
    padding: 30px 16px 30px;
    background: #FAF8E9;
}

.contact-card-green {
    max-width: 400px;
    margin: 0 auto;
    background: #358A50;
    border-radius: 24px 24px 0 0;
    padding: 28px 18px 35px;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(53, 138, 80, 0.2);
}

.contact-card-green h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-card-green>p {
    font-size: 12px;
    line-height: 1.45;
    color: #E8F5E9;
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-info-pill {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: bold;
}

.contact-icon-circle {
    width: 32px;
    height: 32px;
    background: var(--color-primary-terracotta-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 38px 12px 14px;
    font-size: 12px;
    color: #111;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.input-wrapper textarea {
    resize: none;
    height: 45px;
}

.input-wrapper .input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(var(--color-primary-terracotta-700-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--color-primary-terracotta-700);
}

/* Scallop Wavy Bottom Border */
.scallop-bottom-edge {
    width: 100%;
    height: 12px;
    background: radial-gradient(circle, transparent 6px, #358A50 7px);
    background-size: 16px 16px;
    background-position: 0 -8px;
    max-width: 400px;
    margin: 0 auto;
}

/* ================= FAQS SECTION ================= */

.faq-section {
    padding: 30px 16px 40px;
    background: #FAF8E9;
    max-width: 420px;
    margin: 0 auto;
}

.faq-header-badge {
    background: #F7A626;
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    padding: 10px 22px;
    border-radius: 14px 14px 0 0;
    display: inline-block;
    margin-bottom: -1px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

.faq-accordion-box {
    background: #FFFFFF;
    border-radius: 0 16px 16px 16px;
    border: 1px solid #E5E0C2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #F0ECD5;
    padding: 13px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #222;
}

.faq-chevron {
    color: var(--color-primary-terracotta-700);
    font-size: 10px;
    transition: transform 0.2s;
}

.faq-answer {
    display: none;
    font-size: 11px;
    color: #555;
    line-height: 1.4;
    padding-top: 8px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

/* ================= FOOTER SECTION ================= */

.footer-section {
    background: #FAF8E9;
    padding: 35px 20px 0;
    text-align: center;
    border-top: 1px solid #E5E0C2;
}

.footer-sign-wrap {
    margin: 0 auto 16px;
    width: 170px;
}

.footer-tagline {
    font-size: 11.5px;
    color: #444;
    max-width: 280px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

.follow-title {
    font-size: 10px;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 25px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFCE5;
    border: 2px solid #F7A626;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F7A626;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.footer-bottom-bar {
    background: #F7A626;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
}

.footer-bottom-bar a {
    color: #ffffff;
    text-decoration: none;
}

/* ================= MOBILE FIXED NAVBAR ================= */
/* Navbar is fixed ONLY on mobile/tablet (≤ 768px).       */
/* On desktop it stays in normal document flow.            */

@media (max-width: 768px) {

    /* Navbar is fixed to the top on mobile only */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    }

    /* Push body content down so hero starts below the fixed navbar */
    body {
        padding-top: 70px;
    }



html {
        scroll-behavior: smooth;
    }

    /* Target section clearance so fixed/sticky navbar doesn't cover headers */
    [id] {
        scroll-margin-top: 85px;
    }

    /* ── Mobile Navigation Toggle & Drawer ── */
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .menu-toggle:hover {
        background: rgba(var(--color-primary-terracotta-700-rgb), 0.08);
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--color-primary-terracotta-700);
        border-radius: 3px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mobile-nav-drawer {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
    }

    .mobile-nav-drawer.open {
        display: flex;
    }

    .drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
        animation: drawerFadeIn 0.25s ease-out;
    }

    .drawer-panel {
        position: relative;
        background: #FAF8E9;
        width: 82%;
        max-width: 320px;
        height: 100%;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        box-shadow: 6px 0 28px rgba(0, 0, 0, 0.25);
        animation: drawerSlideRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        z-index: 2;
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 1.5px solid #E5DFCA;
    }

    .drawer-close {
        background: none;
        border: none;
        font-size: 28px;
        color: #333;
        cursor: pointer;
        line-height: 1;
        padding: 6px;
        border-radius: 6px;
        transition: color 0.15s, background 0.15s;
    }

    .drawer-close:hover {
        background: rgba(0, 0, 0, 0.06);
        color: var(--color-primary-terracotta-700);
    }

    .drawer-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .drawer-links a {
        display: block;
        padding: 13px 16px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #1A1A1A;
        text-decoration: none;
        border-radius: 10px;
        transition: background 0.15s, color 0.15s;
    }

    .drawer-links a:hover,
    .drawer-links a:active {
        background: rgba(var(--color-primary-terracotta-700-rgb), 0.08);
        color: var(--color-primary-terracotta-700);
    }

    .drawer-download-btn {
        margin-top: auto;
        background: var(--color-primary-terracotta-700);
        color: #ffffff !important;
        text-align: center;
        padding: 14px 22px;
        border-radius: 999px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(var(--color-primary-terracotta-700-rgb), 0.35);
        display: block;
        transition: background 0.2s, transform 0.15s;
    }

    .drawer-download-btn:hover {
        background: var(--color-primary-terracotta-700);
        filter: brightness(0.9);
        transform: translateY(-1px);
    }

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

    @keyframes drawerSlideRight {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none !important;
        }
        .menu-toggle {
            display: flex !important;
        }
    }

    /* ── DOWNLOAD NOW SECTION (MATCHING REFERENCE IMAGE 1) ── */
    .app-crease-section {
        background-image: url('{{ asset('images/downloadbg.png') }}') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        padding: 72px 24px 80px !important;
        text-align: left !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .app-crease-container {
        max-width: 740px;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .app-crease-badge {
        display: inline-block !important;
        background: var(--color-primary-terracotta-700) !important;
        color: #ffffff !important;
        font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
        font-size: 13.5px !important;
        font-weight: 800 !important;
        letter-spacing: 0.9px !important;
        padding: 6px 18px !important;
        border-radius: 2px !important;
        border: 1.5px solid #1a1612 !important;
        box-shadow: 2.5px 3px 0px #1a1612 !important;
        transform: rotate(-1.5deg) !important;
        margin-bottom: 20px !important;
        text-transform: uppercase !important;
    }

    .app-crease-section h2 {
        font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: clamp(32px, 5vw, 52px) !important;
        font-weight: 900 !important;
        line-height: 1.20 !important;
        color: #111111 !important;
        letter-spacing: 1.1px !important;
        margin: 0 0 16px !important;
        max-width: 680px !important;
        text-align: left !important;
    }

    .app-crease-section p {
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: clamp(13px, 1.8vw, 16px) !important;
        font-weight: 500 !important;
        color: #1f1b16 !important;
        line-height: 1.5 !important;
        margin: 0 0 28px !important;
        max-width: 550px !important;
        text-align: left !important;
        opacity: 0.96 !important;
    }

    .app-store-btns {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 16px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }

    .app-store-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 14px !important;
        background: #FAF4DF !important;
        border: 2px solid #181512 !important;
        border-radius: 999px !important;
        padding: 10px 22px !important;
        text-decoration: none !important;
        color: #111111 !important;
        box-shadow: 3px 4px 0px #181512 !important;
        min-width: 0 !important;
        max-width: 260px !important;
        flex: 1 1 0 !important;
        text-align: left !important;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
    }

    .app-store-btn:hover {
        background: #FFF8E7 !important;
        transform: translate(1px, 2px) !important;
        box-shadow: 2px 2px 0px #181512 !important;
    }

    .app-store-btn:active {
        transform: translate(3px, 4px) !important;
        box-shadow: 0px 0px 0px #181512 !important;
    }

    .store-icon-play {
        flex-shrink: 0;
        width: 26px;
        height: 28px;
    }

    .apple-circle-badge {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #1e2530;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .apple-circle-badge svg {
        width: 18px;
        height: 18px;
    }

    .btn-text-wrap {
        display: flex;
        flex-direction: column;
    }

    .app-store-btn .btn-text-small {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 9.5px !important;
        font-weight: 700 !important;
        color: #444444 !important;
        letter-spacing: 0.6px !important;
        text-transform: uppercase !important;
        line-height: 1 !important;
        display: block !important;
    }

    .app-store-btn .btn-text-large {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        color: #111111 !important;
        line-height: 1.25 !important;
        margin-top: 2px !important;
        display: block !important;
    }

    @media (max-width: 600px) {
        .app-crease-section {
            padding: 50px 18px 58px !important;
        }
        .desktop-br {
            display: none;
        }
        .app-store-btn {
            min-width: 0 !important;
            max-width: none !important;
            padding: 9px 10px !important;
            gap: 8px !important;
        }
        .app-store-btn .btn-text-large {
            font-size: 12px !important;
        }
    }

    /* ── WHY POSTERGALI SECTION (MATCHING REFERENCE IMAGE 2) ── */
    .why-section {
        padding: 25px 20px 25px !important;
        background: #FAF8E9 !important;
        text-align: center !important;
        position: relative !important;
    }

    .why-section .sub-header-label {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: #222222 !important;
        margin-bottom: 6px !important;
        text-align: center !important;
    }

    .why-section .main-section-title {
        font-family: 'Plus Jakarta Sans', 'BernardMT', serif !important;
        font-size: clamp(22px, 4vw, 32px) !important;
        font-weight: 900 !important;
        color: #B55B09 !important;
        line-height: 1.22 !important;
        margin: 0 auto 28px !important;
        max-width: 480px !important;
        text-align: center !important;
    }

    .folder-container {
        max-width: 450px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    .folder-tabs {
        display: flex !important;
        gap: 0 !important;
        padding-left: 0 !important;
        margin-bottom: -1px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .folder-tab {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        padding: 5px 20px 6px !important;
        border-radius: 0 !important;
        border: none !important;
        cursor: pointer !important;
        clip-path: polygon(9% 0, 88% 0, 100% 100%, 0 100%) !important;
        margin-right: 0 !important;
        min-width: 108px !important;
        position: relative !important;
        z-index: 1 !important;
        transition: all 0.2s ease !important;
        outline: none !important;
    }

    .folder-tab.tab-vendors {
        background: #F6CB7B !important;
        color: #1F1710 !important;
    }

    .folder-tab.tab-locals {
        background: #D98377 !important;
        color: #261B17 !important;
    }

    .folder-tab.tab-hiring {
        background: #DF8C81 !important;
        color: #261B17 !important;
    }

    .folder-tab[aria-selected="false"] {
        opacity: 0.72 !important;
    }

    .folder-tab[aria-selected="true"] {
        opacity: 1 !important;
    }

    .folder-tab.active {
        background: #F6CB7B !important;
        color: #1F1710 !important;
        font-weight: 800 !important;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05) !important;
    }

    .folder-card {
        background: #F6CB7B !important;
        border-radius: 0 22px 22px 22px !important;
        padding: 16px !important;
        box-shadow: 0 12px 30px rgba(184, 128, 38, 0.22), 0 4px 10px rgba(0, 0, 0, 0.06) !important;
        text-align: left !important;
    }

    .folder-media-box {
        width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        position: relative !important;
        background: #181008 !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
        line-height: 0 !important;
    }

    .folder-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 16px !important;
        object-fit: cover !important;
    }

    .folder-content-body {
        padding-top: 14px !important;
    }

    .folder-content-body h3 {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: clamp(17px, 2.8vw, 20px) !important;
        font-weight: 900 !important;
        color: #381F10 !important;
        margin-bottom: 7px !important;
        line-height: 1.3 !important;
    }

    .folder-content-body p {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 12.5px !important;
        color: #4A3525 !important;
        line-height: 1.45 !important;
        margin-bottom: 16px !important;
        font-weight: 500 !important;
    }

    .btn-folder-cta {
        display: block !important;
        width: 100% !important;
        background: linear-gradient(180deg, #F3AA33 0%, #E69418 100%) !important;
        border: 1px solid #D6880E !important;
        color: #FFFFFF !important;
        padding: 12px 18px !important;
        border-radius: 999px !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-align: center !important;
        text-decoration: none !important;
        box-shadow: 0 4px 14px rgba(220, 137, 24, 0.4) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
        cursor: pointer !important;
        transition: transform 0.15s ease, filter 0.15s ease !important;
    }

    .btn-folder-cta:hover {
        transform: translateY(-1px) !important;
        filter: brightness(1.05) !important;
    }

    .feature-grid-sub {
        max-width: 400px !important;
        margin: 24px auto 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 12.5px !important;
        color: #2E2A27 !important;
        line-height: 1.8 !important;
        font-weight: 700 !important;
        text-align: left !important;
    }

    .feature-grid-sub .green-highlight {
        color: #2E7D32 !important;
        font-weight: 800 !important;
    
    
}