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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #f4f4f4;
    /* basic background to see the header */
    /* height: 200vh; */
    /* to test scrolling and fixed position */
}

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

ul {
    list-style: none;
}

/* Header Container */
.header {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1001;
    width: calc(100% - 64px);
    max-width: 1596px;
    padding: 12px 24px;
}

/* Frosted Glass Background (from Reference) */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 11px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2vw, 50px);
}

/* Left: Logo */
.header__logo {
    font-family: 'Manrope', sans-serif;
    color: #292929;
    font-size: 28px;
    font-weight: 800;
    /* Bold to differentiate */
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.header__logo img {
    width: clamp(140px, 14vw, 216px);
    height: auto;
}

.header__logo:hover {
    opacity: 0.7;
}

/* Center: Navigation Menu */
.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__menu li {
    display: flex;
    align-items: center;
}

/* Typography styles verbatim from prompt */
.header__menu li a,
.header__menu li.separator,
.header__contact-email {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(11px, 1.0vw, 15px);
    font-style: normal;
    font-weight: 400;
    line-height: 113%;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header__menu li a:hover {
    opacity: 0.6;
}

/* Add margin to separator if needed */
.header__menu li.separator {
    cursor: default;
    user-select: none;
}

/* Right: Contact Block */
.header__contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__contact-icon {
    width: 24px;
    height: 24px;
    color: #292929;
}

.header__contact-email:hover {
    opacity: 0.6;
}

/* Burger Button */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #292929;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Burger active animation state */
.header__burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* Responsive: < 1280px */
@media screen and (max-width: 1279px) {

    .header__contact {
        display: none;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: auto;
        background: rgba(246, 242, 238, 0.95);
        backdrop-filter: blur(15px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        border-radius: 0;
        padding: 0;
    }

    .header__nav.active {
        display: flex;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: 8px; /* Match footer gap */
        padding: 64px 0 32px 0;
    }

    .header__menu li.separator {
        display: none;
        /* Hide the visual vertical separator on mobile */
    }

    .header__menu li a {
        font-size: 22px; /* Match footer font size */
        font-weight: 400; /* Match footer font weight */
        line-height: 100%;
    }

    .header__burger {
        display: flex;
    }
}

/* =========================================
   Container Base
   ========================================= */
.container {
    max-width: 1596px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    background: #F6F2EE;
    /* Sufficient padding to clear the ~80px fixed header and extra space */
    padding-top: 320px;

}

.hero-section__title {
    color: #323841;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 9vw, 100px);
    /* 150px as requested, fluidly scaling down to prevent overflow */
    font-style: normal;
    font-weight: 700;
    line-height: 80%;
    position: relative;
    z-index: 2;

}

.hero-image-block {
    position: relative;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-image-block img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* centers image nicely */
}

.hero-labels-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

/* Labels on image */
.hero-label-left,
.hero-label-right {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 113%;
    /* 23.73px */
    pointer-events: auto;
}

/* Hero Responsive < 1280px */
@media screen and (max-width: 1280px) {
    .hero-section {
        padding-top: 150px;

    }

    .hero-section__title {
        font-size: clamp(40px, 7vw, 90px);

    }

    /* Stack labels at the top of the image */
    .hero-labels-wrapper {
        position: absolute;
        top: 15px;
        /* Position at the top of the image */
        left: 0;
        right: 0;
        transform: none;
        /* Reset the vertical center translation */
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        gap: 8px;
    }

    .hero-image-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-label-left,
    .hero-label-right {
        font-size: 16px;
    }

    .hero-image-block img {
        height: 350px;
        object-fit: cover;
        object-position: center;
    }

}

/* =========================================
   Vision Section
   ========================================= */
.vision-section {
    /* To support the background properly, using the requested linear gradient layered over the image */
    background: linear-gradient(270deg, #323841 41.67%, rgba(50, 56, 65, 0.00) 153.44%), url('../img/aa8c355598.jpg') center/cover no-repeat;
    /* Fallback */
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Center vertically */
    padding: 80px 0;
}

.vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.vision-content {
    grid-column: 2;
    margin: 0 auto;
    max-width: 580px;
    /* Restrict width to keep text readable and centered */
    width: 100%;
}

.vision-title {
    color: #F6F2EE;

    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 7vw, 90px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 110px */
    margin-bottom: 40px;
}

.vision-text p {
    color: #F6F2EE;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* Paragraphs explicitly requested to have a justified alignment based on mockup */
    text-align: justify;
}

.vision-text p:not(:last-child) {
    margin-bottom: 24px;
}

/* Vision Responsive < 1280px */
@media screen and (max-width: 1280px) {
    .vision-container {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .vision-content {
        grid-column: 1;
    }

    .vision-section {
        min-height: auto;
        padding: 100px 0;
    }

    .vision-title {
        margin-bottom: 24px;
        text-align: left;
        font-size: clamp(38px, 12vw, 55px);
    }

    .vision-text p {
        text-align: left;
    }
}

/* =========================================
   Our Projects Section
   ========================================= */
.projects-section {
    background: linear-gradient(180deg, #C5BAB4 -2.86%, rgba(197, 186, 180, 0.00) 50%);
    padding: 120px 0;
}

.projects-container {
    display: block;
    /* Reset back to standard block, grid handles layout */
}

.projects-title {
    color: #323841;
    text-align: left;
    /* Align with left edge of the grid */
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 6vw, 111px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 111px */
    margin: 0;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.project-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Special styling just for the title text node */
.text-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    /* helps vertically align title with adjacent cards */
}

.text-card:hover {
    transform: none;
    box-shadow: none;
}

/* Image cards get an aspect-ratio and hover effects */
.project-card:not(.text-card) {
    aspect-ratio: 16 / 9;
}

.project-card:not(.text-card):hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* All 6 cards form a perfect 3-column grid for precise vertical alignment */
/* 2 gaps of 24px = 48px total gap, divided by 3 items = 16px to subtract per item */
.project-card:nth-child(n) {
    width: calc(33.333% - 16px);
}

/* Composed W.Investment Card Custom Rules */
.winvest-card {
    position: relative;
}

.winvest-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winvest-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    height: auto !important;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain !important;
}

/* Responsive constraints < 1280px */
@media screen and (max-width: 1280px) {

    .projects-section {
        padding: 100px 0;
    }

    .projects-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .projects-title {
        margin-bottom: 10px;
        text-align: left;
        font-size: clamp(38px, 12vw, 55px);
    }

    /* Text card spans 100% width on tablet */
    .project-card:nth-child(1) {
        width: 100%;
        justify-content: flex-start;
    }

    /* Cards 2-5 span 50% width (2 items per row) */
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5) {
        width: calc(50% - 12px);
    }

    /* Card 6 (W.Investment) spans 100% */
    .project-card:nth-child(6) {
        width: 100%;
    }
}

/* Full stack mobile < 768px */
@media screen and (max-width: 768px) {
    .projects-grid {
        gap: 16px;
    }

    /* Force 100% width on everything */
    .project-card:nth-child(n) {
        width: 100%;
        aspect-ratio: auto;
        /* min-height: 200px; */
        /* safeguard */
    }
}

/* =========================================
   Group Investment Section
   ========================================= */
.group-section {
    background: #323841;
    padding: 120px 0;
    color: #F6F2EE;
}

.group-container {
    display: grid;
    /* Two equal columns matching the 50/50 visual layout */
    grid-template-columns: 1fr 1fr;
    /* 64px horizontal gap between image and text block */
    gap: 0 64px;
    align-items: flex-start;
}

.group-title {
    grid-column: 2;
    grid-row: 1;
    /* Enforces title to be in Row 1 */
    color: #F6F2EE;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 6vw, 110px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 110px */
    margin: 0 0 40px 0;
    /* Gap between title and text */
}

.group-image {
    grid-column: 1;
    grid-row: 2;
    /* Row 2 natively aligns top edge with .group-text */
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.group-text {
    grid-column: 2;
    grid-row: 2;
    width: 600px;
}

.group-text p {
    color: #F6F2EE;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0 0 24px 0;
    text-align: justify;
    /* Justified paragraphs as requested via Figma properties */
}

.group-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Stack < 1280px */
@media screen and (max-width: 1280px) {
    .group-section {
        padding: 100px 0;
    }

    .group-container {
        grid-template-columns: 1fr;
        gap: 40px;
        /* Switch to vertical gaps primarily */
        padding-left: 20px;
        padding-right: 20px;
    }

    .group-title {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
        margin-bottom: 0;
        font-size: clamp(38px, 12vw, 55px);
    }

    .group-image {
        grid-column: 1;
        grid-row: 2;
        height: auto;
    }

    .group-text {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
    }

    .group-text p {
        text-align: left;
    }
}

/* =========================================
   Press Section
   ========================================= */
.press-section {
    position: relative;
    width: 100%;
    /* We lock the height to the screen size (max 1080px), and let images scale their width naturally to prevent any cropping! */
    height: 100vh;
    max-height: 1080px;
    min-height: 700px;
    overflow: hidden;
    background: #323841;
    display: flex;
    align-items: center;
}

/* The dark translucent layer */
.press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #323841;
    opacity: 0.86;
    z-index: 2;
    pointer-events: none;
}

/* Wrapper to align text with the site container limits */
.press-content-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
}

/* The massive "Press" typography overlapping the animation */
.press-heading {
    color: #F6F2EE;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    pointer-events: none;
    text-align: left;
}

/* Infinite flex scroller wrapper */
.press-scroller {
    display: flex;
    width: 100%;
    height: 100%;
    /* Inherits section height */
    overflow: hidden;
    z-index: 1;
}

/* Wrapping track duplicates */
.scroller-track {
    display: flex;
    height: 100%;
    /* Inherits scroller height */
    flex-shrink: 0;
    animation: scroll-right 90s linear infinite;
}

/* Height-based image scaling */
.scroller-image {
    height: 100%;
    /* Completely fills the visible vertical space */
    width: auto;
    /* Automatically calculates correct width without squishing or cropping! */
    display: block;
    max-width: none;
    flex-shrink: 0;
}

/* The keyframes for moving right continuously */
@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Performance and responsive thresholds */
@media screen and (max-width: 1280px) {
    .scroller-track {
        /* Slower transition ensures better legibility on narrower viewports */
        animation-duration: 150s;
    }
}

/* =========================================
   Contacts Section
   ========================================= */
.contacts-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Make section span full viewport height */
    min-height: 850px;
    /* Sensible minimum to prevent crowding */
    background-image: url('../img/fon-contacts.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Aligns content to bottom */
    padding-bottom: 64px;
    /* Clearance from bottom edge */
    background-color: #323841;
    /* Fallback */
}

/* Subtle gradient at the bottom for improved text legibility */


/* Top gradient overlay as requested */
.contacts-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #323841 -2.86%, rgba(50, 56, 65, 0.00) 50%);
    opacity: 0.91;
    pointer-events: none;
    z-index: 1;
}

.contacts-container {
    position: relative;
    z-index: 2;
    /* Sit cleanly atop the dark ambient gradient */
}

.contacts-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    /* Ensures fluid layout on non-desktop screens */
    gap: 60px;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    color: #F6F2EE;
    transition: color 0.3s ease;
}

/* Base icon containment */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Forces SVG icons pure white natively based on reference style */
.contact-icon img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Replicating Crystal Planet Hover Effect */
.contact-link:hover .contact-icon {
    background-color: #fff;
    border-color: #fff;
    transform: translateY(-4px);
    /* Minor tactile feedback */
}

.contact-link:hover .contact-icon img {
    /* Turning the icon black over the white background */
    filter: brightness(0);
}

.contact-link:hover .contact-text {
    color: #fff;
}

.contact-text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;

    font-weight: 400;
    line-height: 113%;
    text-align: center;
}

/* Contacts Responsiveness */
@media screen and (max-width: 1280px) {
    .contacts-list {
        justify-content: center;
        gap: 32px 48px;
        /* Stacks nicely in a grid pattern visually */
    }
}

@media screen and (max-width: 768px) {
    .contacts-list {
        /* flex-direction: column; */
        /* Fully stack on phones */
        gap: 24px;
    }

    .contacts-section {
        padding-bottom: 40px;
    }

    .contact-text {

        font-size: 14px;

    }
}

/* =========================================
   Footer Section
   ========================================= */
.footer {
    background: #323841;
    padding: 171px 63px 0 63px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Rests the box natively on the bottom */
}

.footer-box {
    background: #F6F2EE;
    border-radius: 5px 5px 0 0;
    width: 100%;
    /* Added internal padding to keep content off the borders */
    padding: 80px 80px 40px 80px;
    display: flex;
    flex-direction: column;
}

.footer-content {
    /* Grid enables absolute centering of logo while nav sits left without offset math */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    align-items: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 22px */
    margin: 0 0 24px 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-list a {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
    opacity: 0.6;

}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    /* Programmatically shifts any color to the requested #292929 */
    filter: brightness(0) invert(0.16);
    height: auto;
}

.footer-bottom {
    margin-top: 80px;
    text-align: center;
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 17px */
}

@media screen and (max-width: 1280px) {
    .footer {
        padding: 80px 24px 0 24px;
    }

    .footer-box {
        padding: 60px 40px 30px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: center;
        text-align: center;
    }

    .footer-logo-container {
        /* This pushes the logo to the very top above the Navigation */
        order: -1;
    }

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

    .footer-nav-title {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 60px;
    }
}

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

.benchmark-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image & gradient overlay */
.benchmark-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/modern-mall.png') no-repeat center center / cover;
    z-index: -2;
}

.benchmark-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F6F2EE 0%, rgba(246, 242, 238, 0.00) 100%);
    z-index: -1;
}

/* Content Layout */
.benchmark-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.benchmark-hero .container.h-full {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benchmark-hero__content {
    max-width: 550px;
    padding: 200px 0 80px 0;
    /* Space for fixed header */
    text-align: left;
}

/* Typography */
.benchmark-hero__title {
    color: #292929;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 8vw, 80px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 110px */
    margin-bottom: 40px;
}

.benchmark-hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.benchmark-hero__text {
    color: #292929;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 3vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

/* Button */
.benchmark-hero__btn {
    display: inline-flex;
    width: 170px;
    height: 47px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 18px;
    border-radius: 11px;
    background: linear-gradient(180deg, #161616 -6.14%, #616161 209.77%);
    backdrop-filter: blur(8px);
    color: #F6F2EE;
    font-family: 'Philosopher', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: all 0.3s ease;
}

.benchmark-hero__btn:hover {
    background: rgba(246, 242, 238, 1);
    color: #292929;
}

/* Responsive Benchmark Section */
@media screen and (max-width: 1279px) {
    .benchmark-hero .container.h-full {
        justify-content: flex-start;
    }

    .benchmark-hero__bg::after {
        background: linear-gradient(180deg, #F6F2EE 0%, rgba(246, 242, 238, 0.5) 100%);
    }

    .benchmark-hero__title {
        font-size: clamp(38px, 10vw, 50px);
        text-align: left;
    }

    .benchmark-hero__text {
        font-size: clamp(16px, 3vw, 16px);
        text-align: left;
    }

    .benchmark-hero__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        padding: 200px 20px 80px 20px;
    }

    .benchmark-hero__btn {
        margin: 0;
    }

    .benchmark-hero__text-group {
        margin-bottom: 60px;
    }
}

/* =========================================================================
   W.INVESTMENT SECTION
   ========================================================================= */

.winvestment-section {
    width: 100%;
    /* padding-top removed to let image touch the top (header is fixed, image will go under it) */
    /* padding-bottom: 80px; */
}

.winvestment-container {
    max-width: 1596px;
    margin: 0 auto;
    width: 100%;
}

/* Block 1: Image */
.winvestment-image-block {
    width: 100%;
    /* margin-bottom: 40px; */
}

.winvestment-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* Remove small inline bottom gap */
    /* Removed border-radius as requested */
}

/* Block 2: Content Grid */
.winvestment-content-block {
    opacity: 0.9;
    /* Slightly higher opacity for readability compared to the 0.4 prompt */
    background: linear-gradient(180deg, #F6F2EE -39.18%, rgba(246, 242, 238, 0.00) 62.76%);
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 120px;
    align-items: start;
    border-radius: 8px;
}

.winvestment-title {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3vw, 33px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 33px */
    margin-bottom: 24px;
}

.winvestment-title .winvestment-subtitle {
    font-weight: 400;
    /* Normal weight for "Fund" */
}

.winvestment-text {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 3vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.winvestment-btn {
    margin-top: 70px;
    margin-left: 0;
}

.winvestment-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    /* Align arrow somewhat below title */
}

/* Base animation for desktop (pointing right) */
@keyframes arrow-point-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }
}

/* Base animation for mobile (pointing down after rotation) */
@keyframes arrow-point-down {

    0%,
    100% {
        transform: rotate(90deg) translateX(0);
    }

    50% {
        transform: rotate(90deg) translateX(15px);
        /* Translates along the rotated local X-axis, which points down visually */
    }
}

.winvestment-arrow img {
    animation: arrow-point-right 2s ease-in-out infinite;
}

/* Responsive W.Investment */
@media screen and (max-width: 1279px) {
    .winvestment-content-block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        text-align: left;
    }

    .winvestment-title {
        text-align: left;
    }

    .winvestment-btn {
        margin: 40px 0 0 0;
    }

    .winvestment-arrow img {
        transform: rotate(90deg);
        /* Point arrow down on mobile */
        animation: arrow-point-down 2s ease-in-out infinite;
    }

    .winvestment-arrow {
        margin-top: 0;
    }

    .winvestment-title {
        font-size: clamp(28px, 3vw, 33px);
    }

    .winvestment-text {
        font-size: clamp(16px, 3vw, 18px);
    }
}

@media screen and (max-width: 767px) {
    .winvestment-title {
        font-size: 28px;
    }

    .winvestment-text {
        font-size: 18px;
    }

    .winvestment-image-block img {
        min-height: 290px;
        object-fit: cover;
        object-position: center;
    }
}

/* =========================================================================
   ROASTERS SECTION
   ========================================================================= */

.roasters-body {
    background: #F6F2EE url('../img/fon-roast.png') no-repeat center center / cover;
    background-attachment: fixed;
    /* Optional: gives a nice parallax feel to full background */
}

.roasters-section {
    width: 100%;
    padding-top: 140px;
    /* Space under fixed header */
    padding-bottom: 0;
    /* Let the cup overflow the bottom if needed */
    overflow: hidden;
    /* Prevent horizontal scrollbars from the protruding cup if it leaks too far right */
}

.roasters-container {
    max-width: 1596px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Block 1: Geo Locations Scroll */
.roasters-geo-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 60px;
    padding-bottom: 20px;
    /* Space for scrollbar */
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #292929 transparent;
}

.roasters-geo-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.roasters-geo-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.roasters-geo-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #292929;
    border-radius: 6px;
}

.roasters-geo-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    /* Minimum gap to ensure they don't touch */
}

.geo-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.geo-arrow {
    margin-top: 10px;
    /* Align with the city names */
    width: clamp(16px, 1.5vw, 32px);
    height: auto;
    flex-shrink: 1;
}

.geo-city {
    height: clamp(24px, 2.5vw, 40px);
    /* Adjust based on actual SVG height */
    width: auto;
    object-fit: contain;
    object-position: left;
}

.geo-city--riyadh {
    height: clamp(35px, 4vw, 45px);
    /* Specifically larger height */
    width: clamp(140px, 14vw, 220px);
    /* Intentionally wide to match the 'stretched' look */
    /* object-fit: fill;  */
}

/* Individual tuning for Riyadh */
.geo-item--riyadh {
    gap: 10px;
    /* Set custom gap here */
}

/* Individual tuning for Hong Kong */
.geo-item--hongkong {
    gap: 10px;
    /* Set custom gap here */
}

.geo-city--hongkong {
    height: clamp(28px, 3vw, 45px);
    /* Custom height for Hong Kong SVG */
    width: auto;
}

.geo-text {
    color: #292929;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* Slightly more readable than 100% for lists */
    white-space: nowrap;
    /* Keep text elements like 'Al Wasl' unbroken */
}

.geo-text strong {
    font-weight: 700;
}

.geo-item--empty .geo-text {
    display: none;
}

/* Block 2: Info & Cup */
.roasters-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    padding-bottom: 100px;
    /* Space at the bottom before footer */
}

.roasters-info {
    max-width: 600px;
    padding-top: 20px;
}

.roasters-logos {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.roast-main-logo {
    height: 70px;
    /* Adjust as necessary */
    width: auto;
    object-fit: contain;
    object-position: left;
}

.roast-sub-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    object-position: left;
    margin-left: 8px;
}

.roasters-text-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.roasters-text {
    color: #292929;
    text-align: justify;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.roasters-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.roasters-cup {
    position: absolute;
    bottom: -135px;
    right: -300px;
    width: 2000px;
    /* Making the canvas gigantic so the inner hand is actually large */
    max-width: none;
    /* Override any previous constraints */
    height: auto;
    z-index: 5;
    pointer-events: none;
}

/* =========================================================================
   CRYSTAL FIT HERO SECTION
   ========================================================================= */

.crystal-fit-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.crystal-fit-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/fit-fon.png') no-repeat center center / cover;
    z-index: -2;
}

.crystal-fit-hero .container {
    max-width: 1596px;
    margin: 0 auto;
    width: 100%;
}

.crystal-fit-hero .container.h-full {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.crystal-fit-hero__content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 200px 0 80px 0;
}

.crystal-fit-hero__content {
    max-width: 600px;
}

.crystal-fit-hero__title {
    color: #F6F2EE;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 8vw, 88px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 93px */
    margin-bottom: 40px;
}

.crystal-fit-hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.crystal-fit-hero__text {
    color: #F6F2EE;
    text-align: justify;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 22px */
}

.crystal-fit-hero__btn {
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    background: linear-gradient(180deg, #D4D4D4 -6.14%, #FFF 209.77%);
    backdrop-filter: blur(8px);

    color: #292929;
    font-family: 'Philosopher', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: all 0.3s ease;
}

.crystal-fit-hero__btn:hover {
    background: linear-gradient(180deg, #FFF -6.14%, #D4D4D4 209.77%);
    transform: translateY(-2px);
}

.crystal-fit-logo-img {
    /* height: clamp(150px, 20vw, 350px); */
    width: auto;
    object-fit: contain;
}

/* =========================================================================
   SALAM DIRHAM HERO SECTION
   ========================================================================= */

.salam-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Create stacking context so children don't go behind the body */
    z-index: 0;
    background-color: #F6F2EE;
}

/* Background image & gradient overlay */
.salam-hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    /* Align to the right */
    left: auto;
    width: 55%;
    /* Match Figma 902px out of 1596px container width */
    height: 100%;
    background-image: url('../img/fon-salam.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    z-index: -2;
}

.salam-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient direction: Left to Right across the ENTIRE screen. Matches user percentage specs to seamlessly hide image bound. */
    background: linear-gradient(90deg, #F6F2EE 53.78%, rgba(246, 242, 238, 0.00) 100%);
    z-index: -1;
    pointer-events: none;
}

.salam-hero .container {
    max-width: 1596px;
    margin: 0 auto;
    width: 100%;
}

.salam-hero .container.h-full {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.salam-hero__content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    padding: 200px 0 70px 0;
    /* Reduced to provide space for right block padding method */
}

/* Left Content */
.salam-hero__content {
    max-width: 600px;
    text-align: left;
    padding-bottom: 110px;
    /* Naturally pushes the aligned right block downwards below the button */
}

.salam-hero__title {
    color: #292929;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 88px */
    margin-bottom: 20px;
}

.salam-hero__subtitle {
    color: #292929;
    text-align: justify;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 22px */
    margin-bottom: 40px;
}

.salam-hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.salam-hero__text {
    color: #292929;
    text-align: justify;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

/* Button */
.salam-hero__btn {
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    background: linear-gradient(180deg, #F2B560 -6.14%, #FFF 209.77%);
    backdrop-filter: blur(8px);

    color: #000;
    font-family: 'Philosopher', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: all 0.3s ease;
}

.salam-hero__btn:hover {
    background: linear-gradient(180deg, #FFF -6.14%, #F2B560 209.77%);
    transform: translateY(-2px);
}

/* Right Content Box */
.salam-hero__right {
    display: flex;
    align-items: flex-end;
    gap: 130px;
    /* margin-bottom removed to prevent bounding box clipping */
}

.salam-hero__stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 5px;
    /* Slight offset to align visually with SVG bottom */
}

.salam-hero__stat-title {
    color: #292929;
    text-align: left;
    align-self: flex-end;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    /* Fixes overlap by calculating relative to each span's font-size */
    white-space: nowrap;
    /* Prevent 1,000,000 from breaking before AED */
}

.salam-hero__up-to {
    display: block;
    font-size: clamp(24px, 2.5vw, 40px);
    margin-bottom: 8px;
}

.salam-hero__amount {
    display: block;
    font-size: clamp(32px, 4vw, 50px);
}

.salam-hero__stat-desc {
    color: #292929;
    text-align: right;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 22px */
}

.salam-hero__stat-desc strong {
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: #292929;
}

.salam-logo-svg {
    height: clamp(60px, 8vw, 90px);
    width: auto;
    object-fit: contain;
}

/* =========================================================================
   FLIPPING FUND HERO SECTION
   ========================================================================= */

.flipping-fund-hero {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image & gradient overlay */
.flipping-fund-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/mpp.png') no-repeat center center / cover;
    z-index: -2;
}

.flipping-fund-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #000 -20.91%, rgba(0, 0, 0, 0.00) 80.37%);
    opacity: 0.91;
    z-index: -1;
}

/* Content Layout */
.flipping-fund-hero .container {
    max-width: 1596px;
    margin: 0 auto;
    width: 100%;
}

.flipping-fund-hero .container.h-full {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.flipping-fund-hero__content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    padding: 200px 0 80px 0;
}

.flipping-fund-hero__content {
    max-width: 600px;
    text-align: left;
}

/* Typography */
.flipping-fund-hero__title-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.flipping-fund-hero__title-row {
    display: flex;
    align-items: baseline;
    gap: 25px;
}

.flipping-fund-hero__title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 6vw, 83px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 93px */
    background: linear-gradient(90deg, #CCDDE5 0%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.flipping-fund-hero__title.line-1 {
    /* margin-bottom: 10px; */
}

.flipping-fund-hero__subtitle {
    color: #F6F2EE;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.3vw, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    white-space: nowrap;
}

.flipping-fund-hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.flipping-fund-hero__text {
    color: #F6F2EE;
    text-align: justify;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

/* Action block (Button + SVG) */
.flipping-fund-hero__btn {
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    background: linear-gradient(180deg, #AFCCDA -6.14%, #D7D7D7 209.77%);
    backdrop-filter: blur(8px);

    color: #000;
    font-family: 'Philosopher', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: all 0.3s ease;
}

.flipping-fund-hero__btn:hover {
    background: linear-gradient(180deg, #D7D7D7 -6.14%, #AFCCDA 209.77%);
    transform: translateY(-2px);
}

.flipping-fund-logo-svg {
    width: auto;
    height: clamp(60px, 8vw, 120px);
    object-fit: contain;
}

/* Responsive updates for Flipping Fund hero */
@media screen and (max-width: 1270px) {
    .crystal-fit-hero__content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 60px;
        padding: 140px 20px 60px 20px;
    }

    .crystal-fit-hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .crystal-fit-hero__title {
        font-size: clamp(38px, 10vw, 56px);
        margin-bottom: 30px;
        text-align: left;
    }

    .crystal-fit-hero__text {
        text-align: left;
        font-size: 14px;
    }

    .crystal-fit-hero__text-group {
        margin-bottom: 40px;
    }

    .crystal-fit-logo-img {
        height: clamp(150px, 25vw, 150px);
        align-self: flex-start;
    }

    .salam-hero__bg {
        width: 100%;
        background-position: center;
        top: 70px;
        /* Lowers the background image by 70px without bleeding out of the gradient or container block */
    }

    .salam-hero::after {
        background: linear-gradient(180deg, #F6F2EE 0%, rgba(246, 242, 238, 0.5) 100%);
        /* Semi-transparent gradient for readability */
    }

    .salam-hero__content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 60px;
        padding: 140px 20px 60px 20px;
    }

    .salam-hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        /* Reset padding alignment on mobile */
    }

    .salam-hero__title {
        font-size: clamp(38px, 10vw, 56px);
        text-align: left;
    }

    .salam-hero__subtitle {
        text-align: left;
    }

    .salam-hero__text {
        text-align: left;
        font-size: 14px;
    }

    .salam-hero__text-group {
        margin-bottom: 40px;
    }

    .salam-hero__right {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 0;
    }

    .salam-hero__stats {
        align-items: flex-start;
        margin-bottom: 0;
    }

    .salam-hero__stat-title {
        text-align: left;
        align-self: flex-start;
        font-size: clamp(28px, 8vw, 42px);
    }

    .salam-hero__stat-desc {
        text-align: left;
    }

    .salam-logo-svg {
        height: 60px;
    }
}

@media screen and (max-width: 1270px) {
    .flipping-fund-hero__content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 40px;
        padding: 140px 20px 60px 20px;
    }

    .flipping-fund-hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .flipping-fund-hero__title {
        font-size: clamp(38px, 10vw, 56px);
        text-align: left;
    }

    .flipping-fund-hero__title.line-1 {
        white-space: nowrap;
    }

    @media screen and (max-width: 375px) {
        .flipping-fund-hero__title {
            font-size: clamp(32px, 10vw, 38px);
        }
    }

    .flipping-fund-hero__subtitle {
        font-size: 16px;
        text-align: left;
    }

    .flipping-fund-hero__title-group {
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .flipping-fund-hero__title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .flipping-fund-hero__text-group {
        margin-bottom: 40px;
    }

    .flipping-fund-hero__text {
        text-align: left;
        font-size: 14px;
    }

    .flipping-fund-logo-svg {
        align-self: flex-start;
        height: 80px;
    }

    .benchmark-hero__content {
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
    }
}

/* Responsive Roasters */
@media screen and (max-width: 1279px) {
    .roasters-container {
        padding-left: 44px;
        padding-right: 44px;
    }

    .flipping-fund-hero__bg::after {
        background: linear-gradient(110deg, #000 -10.91%, rgba(0, 0, 0, 0.00) 99.37%);
    }


    .roasters-geo-block {
        justify-content: flex-start;
        min-width: max-content;
        /* Ensure items don't wrap, force horizontal scroll */
        gap: 40px;
    }

    .geo-arrow {
        width: 32px;
        flex-shrink: 0;
    }

    .geo-city {
        height: 40px;
    }

    .roasters-content-block {
        grid-template-columns: 1fr;
        padding-bottom: 0;
        gap: 0;
    }

    .roasters-info {
        max-width: 100%;
        margin-bottom: 0;
    }

    .roasters-text {
        text-align: left;
        /* Justify is hard to read on mobile */
    }

    /* Move cup under the text */
    .roasters-image-wrapper {
        position: relative;
        height: auto;
        justify-content: center;
        align-items: center;
        margin-top: -210px;
        overflow: visible;
    }

    .roasters-cup {
        position: relative;
        /* Remove absolute positioning */
        bottom: auto;
        right: auto;
        width: 250%;
        /* Large enough so the hand portion of the canvas fills the screen */
        max-width: none;
        /* No cap — the canvas is huge, but only the hand matters */
        display: block;
        margin: 0 auto;
        transform: translateY(40px) translateX(-15%);
        /* Offset to center the physical hand, not the canvas */
    }

    .roasters-section {
        padding-bottom: 40px;
        /* Ensure space for transformed cup */
    }
}

@media screen and (max-width: 767px) {
    .geo-block {
        gap: 20px;
    }

    .roasters-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .roast-main-logo {
        height: 40px;
        max-width: 100%;
        object-fit: contain;
        object-position: left;
    }

    .roast-sub-logo {
        max-width: 100%;
        height: auto;
        margin-left: 0;
    }

    .roasters-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .benchmark-hero__btn {

        margin-right: auto;
    }

    .roasters-text {
        font-size: 16px;
    }

    .roasters-image-wrapper {
        margin-top: -100px;
    }

    /* .roasters-cup {
        transform: translateY(20px);
    } */
}