/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Light Theme Variables */
    --primary-yellow: #ffc700;
    --primary-yellow-hover: #e0b000;
    --bg-body: #ffffff;
    --bg-section-alt: #f9fafb;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
    /* Custom cursor follower will be added */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 199, 0, 0.4);
}

.btn-warning {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn-warning:hover {
    background: #000;
    color: #fff;
}

/* Mouse Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 199, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: multiply;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-yellow-hover);
}

/* Internal Pages */
.page-header {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.content-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-yellow);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* Parallax Vision */
.parallax-section {
    padding: 150px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Responsive Internal */
@media (max-width: 768px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-cta {
    display: none;
}

/* Hero Simplified */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 199, 0, 0.05) 0%, transparent 70%);
    /* Subtle center glow */
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    background: rgba(255, 199, 0, 0.1);
    color: #b48d00;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.4rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-line {
    border: 1px solid #ddd;
    color: #333;
}

.btn-line:hover {
    border-color: #000;
    color: #000;
}

/* Trusted Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-track img {
    display: inline-block;
    height: 35px;
    /* Slightly smaller */
    margin: 0 30px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.marquee-track img:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes content is duplicated once */
}

/* Gift Card Images */
.gift-card-item {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
    object-fit: cover;
}

/* Showcase Section - sticky phone + opposite text scroll */
.showcase-section {
    padding-bottom: 0;
    background: #fff;
    position: relative;
    /* overflow: hidden; Removed to allow pin spacer to work if needed, though usually safe with pinReparent */
}

.showcase-intro {
    text-align: center;
    padding: 60px 0 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* The container that provides scroll space */
.showcase-container {
    height: 500vh;
    /* Increased to accommodate 5 screens nicely */
    width: 100%;
    position: relative;
    /* overflow: visible; Important for sticky to work if parents aren't constraining */
}

/* Wrapper that stays fixed in viewport via GSAP Pin */
.sticky-wrapper {
    height: 100vh;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    /* Ensure positioning context */
}

.showcase-text-col,
.showcase-deco-col {
    width: 380px;
    height: 500px;
    /* Fixed height for vertical centering content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
    position: relative;
    /* CRITICAL for absolute children */
}

.showcase-text-col {
    text-align: left;
}

.showcase-deco-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text-block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Center vertically initially */
    width: 100%;
    opacity: 0;
    /* No transitions in CSS, let GSAP handle it completely to avoid conflicts */
}

.feature-text-block.initial {
    opacity: 1;
}

/* Helper for first item if needed */

.feature-text-block h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Phone Frame */
.phone-frame {
    width: 320px;
    height: 650px;
    background: #fff;
    border: 12px solid #111;
    border-radius: 48px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    overflow: hidden;
    flex-shrink: 0;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #111;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 20;
}

/* Screen Items */
.phone-screen-strip {
    width: 100%;
    height: 100%;
    position: relative;
}

.screen-item {
    width: 100%;
    height: 100%;
    /* fit parent */
    position: absolute;
    top: 0;
    left: 0;
    /* Stack them on top of each other */
    padding: 0;
    margin: 0;
    display: flex;
    opacity: 0;
    /* Hidden by default, JS will show */
    transform: scale(1.1);
    /* Start slightly zoomed in */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.screen-item.active {
    opacity: 1;
    transform: scale(1);
}

.screen-item.prev {
    opacity: 0;
    transform: scale(0.95);
    /* Zoom out effect on exit */
}

.screen-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mock UI Elements */
.mock-header {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mock-img {
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.mock-search-bar {
    height: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.mock-list-item {
    height: 60px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.mock-chat-bubble {
    padding: 10px 15px;
    border-radius: 16px;
    margin-bottom: 15px;
    max-width: 80%;
    font-size: 0.9rem;
}

.mock-chat-bubble.left {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.mock-chat-bubble.right {
    background: var(--primary-yellow);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

/* Decorations */
.floating-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-yellow);
    opacity: 0.2;
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Earn Tokens Grid */
.token-section {
    padding: 60px 0;
    background-color: var(--bg-section-alt);
}

.earn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.earn-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.earn-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.earn-image-placeholder {
    height: 420px;
    /* Fixed height to create a window */
    background: #fafafa;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

.earn-image-placeholder img {
    width: 75%;
    /* Scales the 393px image to fit nicely */
    height: auto;
    object-fit: cover;
    /* Ensures clean resizing */
    object-position: top center;
    /* Stick to top */
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* Phone shadow */
    border: 4px solid #fff;
    /* Mock bezel border */
    transition: transform 0.5s ease;
}

/* On hover, slide the image up slightly to reveal more */
.earn-card:hover .earn-image-placeholder img {
    transform: translateY(-15px);
}

.earn-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    z-index: 2;
}

.earn-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.earn-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Gift Cards Stairs */
.gift-card-section {
    padding: 60px 0;
    overflow: hidden;
}

.flex-row-gift {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gift-text {
    width: 45%;
}

.gift-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gift-cards-stairs {
    width: 45%;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.gift-card-item {
    width: 280px;
    height: 170px;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gift-card-item:hover {
    transform: scale(1.05) translateY(-5px) !important;
    z-index: 50 !important;
}

/* 5 Cards Stacked */
.card-1 {
    background: #111;
    color: #fff;
    top: 0;
    right: 0;
    z-index: 1;
}

.card-2 {
    background: var(--primary-yellow);
    color: #000;
    top: 60px;
    right: 40px;
    z-index: 2;
}

.card-3 {
    background: #f3f4f6;
    color: #111;
    top: 120px;
    right: 80px;
    z-index: 3;
}

.card-4 {
    background: #1f2937;
    color: #fff;
    top: 180px;
    right: 120px;
    z-index: 4;
}

.card-5 {
    background: #ffffff;
    color: var(--primary-yellow);
    top: 240px;
    right: 160px;
    z-index: 5;
    border: 2px solid var(--primary-yellow);
}

.card-logo {
    font-weight: 700;
    font-family: var(--font-heading);
}

.card-val {
    font-size: 2rem;
    font-weight: 600;
    text-align: right;
}

/* Vertical Food Flow */
.food-flow-vertical {
    padding: 60px 0;
    background: #fff;
}

.flow-container {
    display: flex;
    gap: 50px;
    position: relative;
}

.flow-steps-column {
    width: 50%;
    padding-bottom: 100px;
}

.flow-step {
    min-height: 40vh;
    /* Make scrolling long enough */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid #eee;
    padding-left: 40px;
    position: relative;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.flow-step.active {
    opacity: 1;
    border-color: var(--primary-yellow);
}

.flow-step .step-num {
    font-size: 4rem;
    font-weight: 800;
    color: #eee;
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 1;
    z-index: -1;
}

.flow-step.active .step-num {
    color: rgba(255, 199, 0, 0.2);
}

.flow-images-column {
    width: 50%;
    position: relative;
}

.flow-image-sticky {
    position: sticky;
    top: 20vh;
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-img-card {
    width: 300px;
    height: 350px;
    background: #f9f9f9;
    border-radius: 24px;
    display: none;
    /* JS will toggle */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInScale 0.5s ease;
}

.flow-img-card.active {
    display: flex;
}

.flow-img-card i {
    font-size: 5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.15) 0%, transparent 60%);
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Header Logo Alignment */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    /* Adjust based on actual logo ratio */
    width: auto;
}

.logo h2 {
    margin: 0;
    font-size: 1.5rem;
}


/* Reviews Section (Horizontal Scroll) */
.reviews-section-wrapper {
    overflow: hidden;
    padding: 60px 0;
    background: #f9f9f9;
}

.reviews-pin-container {
    width: 100%;
    height: 100vh;
    /* Needed for pinning */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 40px;
    padding-left: 10vw;
    /* Start with offset */
    width: fit-content;
}

.review-card {
    width: 400px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.review-user span {
    font-size: 0.85rem;
    color: #888;
}


/* Articles Section */
.articles-section {
    padding: 60px 0;
    background: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    /* border: 1px solid #eee; */
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-img {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px 0;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--primary-yellow-hover);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-yellow-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-pin-container {
        height: auto;
        display: block;
        overflow-x: auto;
        padding-bottom: 40px;
    }

    .reviews-track {
        padding-left: 20px;
        gap: 20px;
    }

    .review-card {
        width: 300px;
    }
}

/* Enhanced Footer (Light Theme) */
footer {
    padding: 80px 0 40px;
    background: #f9f9f9;
    /* Light background */
    color: var(--text-main);
    border-top: 1px solid #eee;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: #000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #666;
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: #555;
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: #000;
    transform: translateX(5px);
    /* Subtle nudge */
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    margin: 0;
    /* Reset */
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 199, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {

    /* Hero */
    .hero h1 {
        font-size: 3rem;
    }

    /* Mobile Showcase: Stack content */
    .showcase-container {
        height: auto !important;
    }

    /* Override JS height calculation if any */
    .sticky-wrapper {
        height: auto;
        flex-direction: column;
        padding: 50px 0;
        position: relative;
    }

    .phone-frame {
        margin-bottom: 40px;
        transform: scale(0.9);
        /* shrink phone slightly */
    }

    /* Show text below phone */
    .showcase-text-col {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
        pointer-events: all;
    }

    .feature-text-block {
        position: relative;
        opacity: 1 !important;
        /* Force visible */
        transform: none !important;
        top: auto;
        margin-bottom: 20px;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 12px;
    }

    .showcase-deco-col {
        display: none;
    }

    /* Gift Cards: Stack vertically with overlap */
    .gift-cards-stairs {
        height: auto;
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
        align-items: center;
        padding-bottom: 50px;
        /* Space for last card */
    }

    .gift-card-item {
        position: relative;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin-bottom: -100px;
        /* Strong overlap */
        transform: scale(0.9);
    }

    .gift-card-item:last-child {
        margin-bottom: 0;
    }

    .gift-card-item:hover {
        transform: scale(0.95) translateY(-10px) !important;
    }

    .flex-row-gift {
        flex-direction: column;
    }

    .gift-text {
        width: 100%;
        text-align: center;
    }

    /* Food Flow */
    .flow-container {
        flex-direction: column-reverse;
    }

    .flow-steps-column,
    .flow-images-column {
        width: 100%;
    }

    .flow-image-sticky {
        position: relative;
        top: 0;
        height: auto;
        margin-bottom: 40px;
    }

    .flow-img-card {
        display: flex;
        width: 100%;
    }

    /* Show all images on mobile? Or just active one? Let's just stack active one or hide images if too long. Let's keep one sticky image concept but simpler */
    .flow-image-sticky {
        display: none;
    }

    /* Actually hide images on tablet to save space, or show just one static */

    .flow-step {
        min-height: auto;
        margin-bottom: 30px;
        opacity: 1;
        border-left: 3px solid var(--primary-yellow);
        padding-left: 20px;
    }
}

@media (max-width: 768px) {

    /* Mobile Nav */
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: auto;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: flex;
        margin-top: 10px;
        width: 100%;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Earn Grid */
    .earn-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .phone-frame {
        transform: scale(0.8);
        margin-bottom: 20px;
    }
}