.card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.875rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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


/* Hero Section - Updated Layout */
.hero-section {
    margin-top: 80px;
    padding: 5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background: var(--white);
    gap: 4rem;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}



.hero-title {
    font-size: 4.375rem;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1.875rem;
}

.hero-title .italic {
    font-style: italic;
    font-family: Georgia, serif;
}

.hero-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

/* Updated Hero Right Layout */
.hero-right {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 700px;
    height: 37.5rem;
}

/* Large Image Card */
.large-image-card {
    grid-column: 1;
    grid-row: 1 / span 3;
    background: var(--gray-200);
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.large-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-overlay);
    padding: 1.875rem;
    color: var(--white);
}

.image-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.image-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Small Cards */
.stats-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.currency-card {
    background: var(--info);
    grid-column: 2;
    grid-row: 1;
}

.users-card {
    background: var(--warning);
    grid-column: 2;
    grid-row: 2;
}

.saving-card {
    background: var(--color-brand-primary);
    color: var(--white);
    grid-column: 2;
    grid-row: 3;
}

.stats-number {
    font-size: 2.625rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.625rem;
}

.saving-card .stats-number {
    color: var(--white);
}

.stats-label {
    font-size: 1rem;
    color: var(--gray-600);
    text-align: center;
}

.saving-card .stats-label {
    color: rgba(255, 255, 255, 0.9);
}

.trend-up {
    color: var(--color-brand-highlight);
    margin-right: 0.625rem;
}

.saving-amount {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.globe-icon {
    font-size: 3.125rem;
    margin-top: 0.9375rem;
    color: var(--color-brand-highlight);
}

.users-avatars {
    display: flex;
    margin-bottom: 1.25rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-600);
    border: 3px solid var(--white);
    margin-left: -0.9375rem;
}

.avatar:first-child {
    margin-left: 0;
}

.arrow-icon {
    background: var(--color-brand-primary);
    color: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-top: 0.9375rem;
}

.chart {
    width: 100%;
    height: 3.75rem;
    margin-top: 0.9375rem;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 6.25rem 5rem;
    background: var(--gradient-light);
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.875rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5625rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-100);
}

.mockup-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.mockup-buttons {
    display: flex;
    gap: 0.75rem;
}

.mockup-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.mockup-btn-cyan {
    background: var(--gradient-highlight);
    color: var(--white);
}

.mockup-btn-green {
    background: var(--color-brand-primary);
    color: var(--white);
}

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

.mockup-table {
    width: 100%;
    margin-top: 1.25rem;
}

.mockup-row {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr 0.8fr;
    gap: 0.9375rem;
    padding: 1.125rem 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: center;
    font-size: 0.9375rem;
}

.mockup-row:nth-child(even) {
    background: var(--gray-50);
}

.mockup-row:last-child {
    border-bottom: none;
}

.mockup-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.badge-green {
    background: var(--success);
    color: var(--success-text);
}

.badge-red {
    background: var(--danger);
    color: var(--danger-text);
}

.mockup-row-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--color-brand-secondary);
    color: var(--white);
    white-space: nowrap;
}

.mockup-row-btn:hover {
    background: var(--color-brand-accent);
    transform: translateY(-1px);
}

.mockup-row-btn:active {
    transform: translateY(0);
}

.mockup-row-btn:disabled {
    background: var(--color-brand-secondary);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Map Section */
.map-section {
    padding: 6.25rem 5rem;
    background: var(--white);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

.map-mockup {
    background: var(--gradient-light);
    border-radius: 1.5rem;
    padding: 1.875rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-image: url("/assets/img/ppkgfdb43vqceaxnqrv.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 12.5rem;
}

.map-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.map-overlay p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 6.25rem 5rem;
    background: var(--white);
}

.values-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4.375rem;
}

.values-left {
    flex: 1;
}

.values-description {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-top: 0.5rem;
    padding-left: 3.75rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
}

.value-card {
    background: var(--white);
    padding: 2.8125rem 2.1875rem;
    border-radius: 0.75rem;
    position: relative;
    min-height: 21.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card:last-child {
    background-color: #dcdcc8;
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.1875rem;
}

.icon-transparency {
    width: 2.125rem;
    height: 2.125rem;
    position: relative;
}

.icon-transparency::before,
.icon-transparency::after {
    content: '';
    position: absolute;
    border: 2px solid var(--black);
    border-radius: 50%;
}

.icon-transparency::before {
    width: 1.375rem;
    height: 1.375rem;
    top: 0;
    left: 0;
}

.icon-transparency::after {
    width: 1.375rem;
    height: 1.375rem;
    bottom: 0;
    right: 0;
}

.icon-diamond {
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--black);
    transform: rotate(45deg);
}

.icon-ripple {
    width: 2.25rem;
    height: 2.25rem;
    position: relative;
}

.icon-ripple::before,
.icon-ripple::after {
    content: '';
    position: absolute;
    border: 2px solid var(--black);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.icon-ripple::before {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-ripple::after {
    width: 2.25rem;
    height: 2.25rem;
}

.value-card h3 {
    font-size: 1.3125rem;
    font-weight: 500;
    margin-bottom: 1.125rem;
    line-height: 1.3;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: auto;
}

.arrow-link {
    width: 2.75rem;
    height: 2.75rem;
    background-color: var(--color-brand-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 1.5625rem;
    border: none;
}

.arrow-link:hover {
    transform: scale(1.05);
}

.arrow-icon-small {
    width: 1.125rem;
    height: 1.125rem;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    position: relative;
    top: 2px;
    right: -1px;
}

/* FAQ Section */
.faq-section {
    margin: 0 5rem 5rem;
    padding: 6.25rem 5rem;
    background: var(--gray-50);
}

.faq-container {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 5rem;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-300);
    padding: 1.75rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:not(.faq-active):hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 400;
    transition: all 0.3s ease;
}

.faq-icon {
    font-size: 1.75rem;
    color: var(--black);
    font-weight: 300;
    width: 1.875rem;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.faq-item.faq-active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 35rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.faq-active .faq-answer {
    margin-top: 1.25rem;
    max-height: 31.25rem;
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--color-brand-primary);
    border-radius: 0.75rem;
    padding: 4.375rem 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 5rem 5rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content h2 em {
    font-style: italic;
    font-family: Georgia, serif;
}

.cta-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2.1875rem;
}

.cta-visual {
    position: relative;
    width: 17.5rem;
    height: 17.5rem;
    flex-shrink: 0;
}

.sparkle {
    position: absolute;
}


.sparkle-1 {
    top: 0.625rem;
    right: 6.25rem;
}

.sparkle-1 img {
    width: 3.125rem;
    height: auto;
}

.sparkle-2 {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 5rem;
}

.sparkle-2 img {
    width: 5rem;
    height: auto;
}

.sparkle-3 {
    top: 6.25rem;
    right: 11.25rem;
    font-size: 2.8125rem;
}

.sparkle-3 img {
    width: 2.4375rem;
    height: auto;
}

.money-plate {
    position: absolute;
    bottom: 0;
    right: 1.25rem;
    width: 15rem;
    height: 10rem;
    background-color: #d8d8c8;
    border-radius: 7.5rem 7.5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.875rem;
}

.plate-content {
    font-size: 4.375rem;
    transform: rotate(-15deg);
}

.plate-content img {
    width: 11.25rem;
    height: auto;
}

/* mealJourney Steps Section */
.mealJourney-section {
    padding: 6.25rem 5rem;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.mealJourney-header {
    text-align: center;
    margin-bottom: 5rem;
}

.mealJourney-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    margin-top: 3.75rem;
}

/* Connection Line */
.mealJourney-steps::before {
    content: '';
    position: absolute;
    top: 7.5rem;
    right: 25%;
    left: 25%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-brand-secondary), var(--color-brand-primary));
    z-index: 1;
    opacity: 0.3;
}

/* mealJourney Step */
.mealJourney-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.mealJourney-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 3.125rem;
    height: 3.125rem;
    background: var(--color-brand-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.875rem;
    position: relative;
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(39, 91, 83, 0.15);
}

.step-image-container {
    width: 11.25rem;
    height: 11.25rem;
    margin: 0 auto 1.875rem;
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
}

.mealJourney-step:hover .step-image-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mealJourney-step:hover .step-image {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.9375rem;
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    right: 50%;
    transform: translateX(50%);
    width: 2.5rem;
    height: 3px;
    background: var(--color-brand-secondary);
    border-radius: 2px;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    padding: 0 0.625rem;
    max-width: 15.625rem;
    margin: 0 auto;
}

/* Step-specific colors */
.step-1 .step-number {
    background: var(--gradient-secondary);
}

.step-2 .step-number {
    background: var(--gradient-primary);
}

.step-3 .step-number {
    background: var(--gradient-secondary);
}

.step-4 .step-number {
    background: var(--gradient-primary);
}

/* Interactive Preview Panel - IMPROVED RESPONSIVE DESIGN */
.preview-panel {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3.125rem;
    margin-top: 5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: stretch;
    gap: 3.75rem;
    min-height: 25rem;
    position: relative;
    overflow: hidden;
}

/* Text Content */
.step-details-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    /* Match image height ratio */
}

.step-details-content h3 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.step-details-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Stats Grid */
.step-details-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 400px;
}

.step-details-stat {
    background: var(--gray-50);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border-right: 4px solid var(--color-brand-secondary);
}

.step-details-stat-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-brand-primary);
    margin-bottom: 0.3125rem;
}

.step-details-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Image Container - 1472x640 aspect ratio (2.3:1) */
.step-details-image {
    flex: 1;
    position: relative;
    border-radius: 0.9375rem;
    overflow: hidden;
    background: var(--gray-100);
    max-width: 1472px;
    max-height: 640px;
}

.step-details-image img {
    border-radius: 0.9375rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.step-details-image:hover img {
    border-radius: 0.9375rem;
    transform: scale(1.05);
}

/* Step Navigation Dots */
.step-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1.25rem 0;
}

.step-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid var(--color-brand-secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.step-dot:hover {
    transform: scale(1.2);
    background: rgba(101, 143, 133, 0.3);
}

.step-dot.active {
    background: var(--color-brand-secondary);
    width: 0.875rem;
    height: 0.875rem;
    border-color: var(--color-brand-secondary);
}

.step-dot:focus {
    outline: 2px solid var(--color-brand-secondary);
    outline-offset: 2px;
}

/* Decorative Elements */
.mealJourney-decoration {
    position: absolute;
    pointer-events: none;
}

.decoration-1 {
    width: 18.75rem;
    height: 18.75rem;
    background: radial-gradient(circle, rgba(101, 143, 133, 0.05) 0%, transparent 70%);
    top: -9.375rem;
    right: -9.375rem;
}

.decoration-2 {
    width: 12.5rem;
    height: 12.5rem;
    background: radial-gradient(circle, rgba(39, 91, 83, 0.05) 0%, transparent 70%);
    bottom: -6.25rem;
    left: -6.25rem;
}

/* Responsive Design - UPDATED FOR STEP DETAILS */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        margin-bottom: 3.75rem;
    }

    .hero-right {
        max-width: 100%;
        height: 31.25rem;
    }

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

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-left {
        position: static;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3.125rem 1.875rem;
        margin: 0 2.5rem 5rem;
    }

    .cta-visual {
        margin-top: 2.5rem;
    }

    .preview-content,
    .map-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .map-mockup {
        height: 21.875rem;
    }

    .mealJourney-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3.125rem;
    }

    .mealJourney-steps::before {
        display: none;
    }

    .mealJourney-step {
        flex: 0 0 calc(50% - 3.125rem);
        margin-bottom: 2.5rem;
    }

    /* Step Details for 1200px */
    .preview-panel {
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .step-details-content h3 {
        font-size: 2rem;
    }

    .step-details-content p {
        font-size: 1rem;
    }

    .step-details-image {
        height: 280px;
        min-height: 280px;
    }
}

@media (max-width: 992px) {

    /* Step Details for 992px */
    .preview-panel {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 2rem;
    }

    .step-details-content {
        align-items: center;
        min-height: auto;
    }

    .step-details-content p {
        max-width: 100%;
    }

    .step-details-stats {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .step-details-image {
        width: 100%;
        height: 300px;
        min-height: 300px;
        order: -1;
        /* Image first on tablet */
    }
}

@media (max-width: 768px) {

    .hero-section,
    .dashboard-preview,
    .map-section,
    .values-section,
    .faq-section,
    .mealJourney-section {
        padding: 3.75rem 1.25rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .values-header {
        flex-direction: column;
        gap: 1.875rem;
    }

    .values-description {
        padding-left: 0;
    }

    .cta-banner {
        margin: 0 1.25rem 3.75rem;
    }

    .mockup-row {
        grid-template-columns: 0.5fr 1fr 1fr 1fr 0.8fr;
        font-size: 0.875rem;
        gap: 0.625rem;
    }

    .mockup-row-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .mockup-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mockup-btn {
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .map-mockup {
        height: 18.75rem;
    }

    .mealJourney-title {
        font-size: 2.25rem;
    }

    .mealJourney-step {
        flex: 0 0 100%;
        margin-bottom: 3.125rem;
    }

    .step-image-container {
        width: 9.375rem;
        height: 9.375rem;
    }

    /* Step Details for 768px - HIDDEN ON SMALL SCREENS */
    .preview-panel {
        display: none !important;
    }

    .step-dots {
        display: none !important;

    }
}



/* Animation for step hover */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 143, 133, 0.4);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(101, 143, 133, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(101, 143, 133, 0);
    }
}

.mealJourney-step.active .step-image-container {
    animation: pulse 2s infinite;
}