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

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

main {
    padding-top: 70px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #0b0b0d, #121214);
    color: #f6f6f6;
    z-index: 10;
}

.nav--light {
    background: #fff;
    color: #0b0b0d;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.nav__logo {
    width: 40px;
    height: 35px;
}

.nav__links {
    display: inline-flex;
    gap: 16px;
    font-size: 14px;
}

    .nav__links a {
        padding: 8px 10px;
        border-radius: 999px;
        transition: background 0.2s ease, color 0.2s ease;
    }

        .nav__links a:hover {
            background: rgba(255, 255, 255, 0.08);
        }

    .nav__links .active {
        color: #d3a63c;
    }

.mobile-menu__content .btn--pill {
    margin-top: 40px;
    align-self: stretch;
    padding: 12px 20px;
    font-size: 15px;
    /* width: 100%; */
    border-radius: 999px;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

    .hamburger span {
        width: 28px;
        height: 3px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger .dark {
        background: #0b0b0d;
    }

    .hamburger .light {
        background: white;
    }
    /* Active state for hamburger (X icon) */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu.active .mobile-menu__content {
    transform: translateX(0);
}

.mobile-menu__content a {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

    .mobile-menu__content a.active {
        color: #d3a63c;
        font-weight: 600;
    }

.mobile-menu__content .btn--pill {
    margin-top: 20px;
    align-self: flex-start;
}

/* Hide desktop elements on mobile */
.desktop-only {
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #c6932c, #f1c55a);
    color: #0b0b0d;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    }

.btn--ghost {
    background: transparent;
    color: #f6f6f6;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn-app {
    background-color: #d5ac50;
    color: black;
    border-radius: 10px;
    padding: 12px 18px;
}

.btn--ghost--googlePlay {
    color: #d5ac50;
    border-radius: 10px;
    padding: 12px 18px;
    border: 1px solid #d5ac50;
}

.btn--pill {
    border-radius: 999px;
    padding: 8px 10px;
}

.hero {
    padding: 0 64px;
    background: radial-gradient( circle at 15% 20%, rgba(250, 215, 118, 0.18), transparent 30% ), radial-gradient(circle at 80% 0%, rgba(194, 136, 28, 0.25), transparent 25%), #0b0b0d;
    color: #f6f6f6;
}

.hero__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 32px;
    max-width: 1500px;
    margin: 0 auto 0 auto;
}

.hero__content {
    padding: 60px 0;
}

    .hero__content h1 {
        font-size: clamp(32px, 4vw, 48px);
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .hero__content p {
        max-width: 520px;
        color: #d8d8d8;
    }

.highlight {
    color: #d8aa3f;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 28px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(80px, 1fr));
    gap: 10px;
    max-width: 520px;
    font-size: 14px;
}

    .hero__stats strong {
        display: block;
        font-size: 18px;
    }

    .hero__stats span {
        color: #c9c9c9;
    }

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__cards {
    width: 500px;
    height: 100%;
    background-image: url("./assets/homeImg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.redeem {
    padding: 96px 64px;
    background: #faf8f2;
}

.redeem__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto 0 auto;
    padding: 0 10px;
}

.redeem__text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.redeem__text p {
    color: #4a4a4a;
    max-width: 520px;
}

.redeem__steps {
    margin-top: 18px;
    display: grid;
    gap: 14px;
    color: #2b2b2b;
}

.redeem__visual {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.key-features {
    padding: 120px 64px;
    background: #0b0b0d; /* Dark background to match screenshot */
    color: #f6f6f6;
    /* text-align: center; */
}

.key-features__container {
    max-width: 1400px;
    margin: 0 auto;
}

.key-features h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.key-features > .key-features__container > p {
    color: #aaaaaa;
    font-size: 18px;
    margin-bottom: 60px;
}

.key-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
}

.key-features__header {
    text-align: center;
}

.key-features__description {
    text-align: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05); /* Semi-transparent dark */
    backdrop-filter: blur(10px); /* Glassmorphic effect */
    border-radius: 24px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 24px;
    background: rgba(214, 165, 60, 0.2); /* Subtle gold background */
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 25px;
    color: #d6a53c; /* Gold icon color */
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 15px;
}

.steps {
    padding: 90px 64px;
    text-align: center;
    background: #fffdf7;
}

    .steps h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 1500px;
    margin: 0 auto 0 auto;
}

.step {
    padding: 20px;
}

.step__number {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1px solid;
    display: grid;
    place-items: center;
}

.faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 90px 64px;
    background: white;
    max-width: 1500px;
    margin: 0 auto 0 auto;
}

.faq__intro h2 {
    margin-bottom: 10px;
}

.faq__intro p {
    color: #4c4c4c;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid gray;
    overflow: hidden;
    margin-bottom: 20px;
}

.faq__question {
    width: 100%;
    text-align: left;
    border: none;
    background: #fff;
    padding: 14px 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.color {
    background-color: #d5ac50;
}

.faq__answer {
    padding: 16px 14px;
    color: #4a4a4a;
    display: none;
    font-size: 15px;
}

.faq__item.open .faq__answer {
    display: block;
}

.faq__item.open .faq__toggle {
    transform: rotate(180deg);
}

.download {
    padding: 90px 64px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #fffdf7;
}

.download__actions {
    display: flex;
    gap: 16px; /* better breathing room */
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* prevents overflow on small screens */
}

  .download__actions a,
 .download__actions button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

.download__actions a:hover,
.download__actions button:hover {
    transform: translateY(-2px);
}

.footer {
    background: #0c0c0e;
    color: #e6e6e6;
    padding: 100px 64px;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 0 auto;
}

.footer__brand p {
    margin-top: 10px;
    color: #c8c8c8;
}

.footer__column h4 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #f1c55a;
}

.footer__column a {
    display: block;
    margin-bottom: 6px;
    color: #e6e6e6;
    font-size: 14px;
}

.footer__social {
    display: flex;
    gap: 25px;
}

    .footer__social a {
        margin-right: 8px;
    }

.about__intro,
.values,
.team {
    padding: 90px 64px 32px;
    text-align: center;
}

    .about__intro h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .about__intro p {
        max-width: 840px;
        margin: 0 auto 12px;
        color: #3a3a3a;
    }

    .values h2,
    .team h2 {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .values p,
    .team p {
        color: #4a4a4a;
        margin-bottom: 22px;
    }

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto 0 auto;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f7e3b1;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto 0 auto;
}

.team__member {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    text-align: center;
}

.team__photo {
    width: 100%;
    height: 300px;
    border-radius: 12px 12px 0 0;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    background-position: center;
}

.member__one {
    background-size: cover;
    background-position: top;
}

.team__member span {
    display: block;
    color: #606060;
    margin-bottom: 10px;
}

.team__social a {
    margin: 0 6px;
}

.merchants {
    padding: 90px 64px;
    background: #fffdf7;
    text-align: center;
}

.merchants__container {
    max-width: 1400px;
    margin: 0 auto;
}

.merchants h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.merchants p {
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto 40px;
}

.merchants__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
 .merchants__logos img {
        height: 120px;
        width: auto;
        object-fit: contain;
        max-width: 180px;
        object-fit: contain;
        image-rendering: auto;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
 .merchants__logos img:hover {
        transform: scale(2.00);
    }

/* Become Merchant Section */
.become-merchant {
    padding: 90px 64px;
    background: #faf8f2;
}

.become-merchant__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    /* margin: 0 auto; */
    overflow: hidden;
}

.become-merchant__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    min-height: 300px;
}

.become-merchant__content {
    padding: 40px;
    text-align: left;
}

    .become-merchant__content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .become-merchant__content p {
        color: #4a4a4a;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .become-merchant__content .btn {
        background: linear-gradient(90deg, #c6932c, #f1c55a);
        color: #0b0b0d;
        padding: 14px 24px;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .nav {
        padding: 0 18px;
    }

    .nav__links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav__links {
        display: none; /* Hide desktop links on mobile */
    }

    .desktop-only {
        display: none; /* Hide Contact button on mobile (it's in mobile menu) */
    }

    .nav {
        padding: 0 24px;
    }

    .heroImg {
        width: 400px;
        /* margin: 0 auto; */
    }

    .hero {
        padding: 0 32px;
    }

    /* .hero, */
    .redeem,
    .steps,
    .faq,
    .download,
    .about__intro,
    .values,
    .team {
        padding: 72px 22px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

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

    .merchants,
    .become-merchant {
        padding: 72px 22px;
    }

    .merchants__logos {
        gap: 24px;
    }

        .merchants__logos img {
            height: 50px;
        }

    .become-merchant__container {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: center;
        justify-items: center;
        max-width: 1400px;
        /* margin: 0 auto; */
        overflow: hidden;
    }

    .become-merchant__content {
        padding: 0;
        /* width: 90%; */
        text-align: center;
    }

        .become-merchant__content h2 {
            font-size: 28px;
        }

    .key-features__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .key-features {
        padding: 80px 22px;
    }

        .key-features h2 {
            font-size: 32px;
        }

        .key-features > .key-features__container > p {
            font-size: 16px;
            margin-bottom: 40px;
        }

    .feature-card {
        padding: 32px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__photo {
        height: 150px;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none; 
    }
}
