:root {
    --bg-dark: #123326;
    --bg-light: #ffffff;
    --accent-yellow: #ffffff;
    --text-white: #ffffff;
    --text-dark: #123326;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Navbar Styling */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-main {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.logo-sub {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

/* Partner With Us in .nav-links: show in hamburger menu only; desktop uses .nav-actions CTA */
.nav-links a.nav-link-partner-mobile-only {
    display: none;
}

.btn-contact {
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.btn-contact:hover {
    background: white;
    color: var(--bg-dark);
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 180px 2rem 10rem;
    background-color: var(--bg-dark);
}

/* Category Grid System */
/* Category Grid System */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    padding: 0 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-align: center;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    height: 480px;
    overflow: hidden;
}

a.category-card {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

a.category-card:focus-visible {
    outline: 2px solid rgba(168, 207, 69, 0.9);
    outline-offset: 4px;
    z-index: 25;
}

.category-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation-play-state: paused;
    z-index: 20;
}

.category-card h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(18, 51, 38, 0.8) 0%, rgba(18, 51, 38, 0) 100%);
    margin-bottom: 0;
}

.category-card .card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Staggered top alignment with alternating floating animation */
@keyframes float-cards {
    0%, 100% { transform: translateY(12px); }
    50% { transform: translateY(-12px); }
}

.card-tall { 
    margin-top: 0; 
    animation: float-cards 12s ease-in-out infinite;
}
.card-short { 
    margin-top: 80px; 
    animation: float-cards 12s ease-in-out infinite;
    animation-delay: 0s;
}

/* Give each hero card a different phase so they don't move together */
.category-grid .category-card:nth-child(1) { animation-delay: -1s; }
.category-grid .category-card:nth-child(2) { animation-delay: -3s; }
.category-grid .category-card:nth-child(3) { animation-delay: -5s; }
.category-grid .category-card:nth-child(4) { animation-delay: -7s; }
.category-grid .category-card:nth-child(5) { animation-delay: -9s; }
.category-grid .category-card:nth-child(6) { animation-delay: -11s; }

/* Other Goods Section */
.other-goods-container {
    max-width: 1400px;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.other-goods-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.other-goods-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.other-goods-box:hover img {
    transform: scale(1.05);
}

.other-goods-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.other-goods-tag {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 20;
}

.other-content-overlay {
    position: relative;
    z-index: 10;
    background: rgba(18, 51, 38, 0.6);
    backdrop-filter: blur(5px);
    padding: 1rem 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.other-content-overlay span {
    color: white;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .card-short { margin-top: 40px; }
    .category-card { height: 400px; }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 5rem;
    }

    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 2rem;
        gap: 1.5rem;
        width: 100vw;
        margin-left: -2rem; /* Align with container padding */
        scrollbar-width: none;
        -ms-overflow-style: none;
        perspective: 1000px;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        flex: 0 0 280px;
        height: 420px !important;
        scroll-snap-align: center;
        margin-top: 0 !important;
        transition: transform 0.5s ease;
    }

    /* Keep a subtle stagger even in scroll if it feels premium */
    .card-short {
        margin-top: 30px !important;
    }

    .other-goods-container {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .other-goods-box {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 30px;
    }
    
    .other-goods-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .other-content-overlay {
        padding: 1rem 1.5rem;
    }
    
    .other-content-overlay span {
        font-size: 0.9rem;
    }
}

@media (max-width: 500px) {
    .category-card {
        flex: 0 0 85%; /* Shows most of the card and a hint of the next */
    }
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 15vw, 18vw);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: -2px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 9rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -2px;
    z-index: 10;
}

.text-white { color: white; }
.text-yellow { color: var(--accent-yellow); }

.hero-centerpiece {
    position: relative;
    width: clamp(200px, 40vw, 500px);
    height: auto;
    z-index: 5;
    margin-top: -2rem;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.3));
}

/* Floating Dots */
.floating-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--accent-yellow);
    border-radius: 50%;
    z-index: 6;
    animation: pulse 2s infinite;
}

.dot-1 { top: 20%; left: 30%; }
.dot-2 { top: 60%; right: 20%; }
.dot-3 { bottom: 30%; left: 40%; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Floating Cards */
.info-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    z-index: 20;
}

.card-left {
    top: 40%;
    left: 8%;
    width: 180px;
}

.card-right {
    top: 55%;
    right: 8%;
    width: 180px;
}

.card-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text .percentage {
    font-weight: 700;
    font-size: 1.1rem;
}

.card-text .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: rgba(255,255,255,0.1);
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: white;
}

/* Bottom Controls */
.bottom-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 30;
}

.bottom-left-panel {
    background: white;
    width: clamp(200px, 25vw, 320px);
    height: auto;
    min-height: 140px;
    border-top-right-radius: 60px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.phone { background: var(--accent-yellow); color: white; }
.linkedin { border: 1px solid #ddd; color: var(--bg-dark); }

.panel-text {
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
}

.bottom-center-panel {
    padding-bottom: 3rem;
    text-align: center;
}

.center-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-get-started {
    background: white;
    color: var(--bg-dark);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.btn-get-started:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bottom-right-panel {
    background: white;
    width: clamp(250px, 30vw, 350px);
    height: auto;
    min-height: 160px;
    border-top-left-radius: 60px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.video-btn {
    background: var(--accent-yellow);
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    width: fit-content;
    align-self: flex-end;
}

.play-icon {
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.5);
    font-weight: 600;
}

.explore-link {
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: underline;
    margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    #navbar { 
        padding: 1.5rem; 
        position: fixed;
        background: rgba(18, 51, 38, 0.9);
        backdrop-filter: blur(10px);
    }
    .nav-links { display: none; }
    .logo-pill { width: 50px; height: 50px; font-size: 0.5rem; }
    .btn-contact { padding: 0.5rem 1rem; font-size: 0.65rem; }
    
    .hero-section { 
        padding-top: 150px;
        justify-content: flex-start;
    }

    .hero-title { 
        flex-direction: column;
        font-size: 3.5rem; 
        gap: 0;
        margin-bottom: 2rem;
    }
    
    .hero-overlay-text { display: none; }
    .info-card { display: none; }
    .floating-dot { display: none; }

    .bottom-controls { 
        position: relative;
        flex-direction: column; 
        height: auto; 
        width: 100%;
        align-items: stretch;
        gap: 0;
    }
    
    .bottom-left-panel, .bottom-right-panel { 
        width: 100%; 
        border-radius: 0; 
        min-height: auto;
        padding: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .bottom-left-panel { border-top: 1px solid rgba(0,0,0,0.05); }
    .bottom-right-panel { border-top: 1px solid rgba(0,0,0,0.05); }

    .bottom-center-panel { 
        padding: 3rem 1rem;
        background: rgba(18, 51, 38, 0.4);
    }
    
    .panel-text { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 0.75rem; }
    .stat-value { font-size: 2rem; }
}

/* Features Section */
.features-section {
    padding: 8rem 4rem;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 5;
}

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

.section-subtitle {
    color: var(--accent-yellow);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 40px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-section { padding: 4rem 2rem; }
    .section-header { margin-bottom: 3rem; }
}

/* Top Selling Section */
.top-selling-section {
    padding: 6rem 4rem;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 5;
}

.title-pill {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    position: relative;
    margin-bottom: 5rem;
}

.title-pill::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 40px;
    border-bottom: 2px solid #a8cf45;
    border-left: 2px solid #a8cf45;
    border-bottom-left-radius: 20px;
}

.title-pill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 40px;
    border-top: 2px solid #a8cf45;
    border-right: 2px solid #a8cf45;
    border-top-right-radius: 20px;
}

.pill-text {
    color: white;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    row-gap: 3.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

.top-selling-empty {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 1rem auto 0;
    padding: 2.25rem 2rem;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

/* Product card — glass panel + hero image “float” (ref: minimal portfolio mock) */
.product-card {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    margin-top: 6.25rem;
    padding: 13.25rem 2.5rem 2.85rem 2.6rem;

    background: linear-gradient(
        152deg,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.05) 42%,
        rgba(13, 38, 29, 0.45) 100%
    );
    backdrop-filter: blur(22px) saturate(1.12);
    -webkit-backdrop-filter: blur(22px) saturate(1.12);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 28px 132px 38px 32px;
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);

    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease,
        background 0.45s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow:
        0 40px 72px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    background: linear-gradient(
        152deg,
        rgba(255, 255, 255, 0.17) 0%,
        rgba(255, 255, 255, 0.07) 45%,
        rgba(13, 38, 29, 0.52) 100%
    );
}

.product-image {
    position: absolute;
    top: -8.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 348px;
    height: 348px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-image {
    transform: translateX(-50%) translateY(-10px) scale(1.06);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 32px 40px rgba(0, 0, 0, 0.55))
        drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.product-name {
    position: relative;
    z-index: 1;
    width: 100%;
    color: #fff;
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0.35rem 0 0.7rem;
}

.product-desc {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.94rem, 1.65vw, 1.06rem);
    line-height: 1.58;
    font-weight: 400;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.product-price {
    color: white;
    font-weight: 400;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.add-btn {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
/* Reviews Section */
.reviews-section {
    padding: 6rem 4rem 10rem;
    background: var(--bg-dark);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 2.5rem;
    border-radius: 80px 40px 80px 40px; /* Squircle shape from reference */
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stars {
    color: white; /* No yellow as per request */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 4rem 8rem;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.4rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--accent-lime);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin: 0;
    padding: 0 1.4rem 1.2rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { border-radius: 60px 30px 60px 30px; }
    .faq-section { padding: 2rem 1.5rem 6rem; }
    .faq-item { border-radius: 20px; }
}

.add-btn:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Mobile Adjustments for Products */
@media (max-width: 900px) {
    .products-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-card {
        border-radius: 26px 100px 34px 30px;
        margin-top: 4.25rem;
        padding: 11.875rem 1.85rem 2.5rem;
    }

    .product-image {
        width: 306px;
        height: 306px;
        top: -7.35rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

.bottom-left-panel, .bottom-right-panel, .bottom-center-panel {
    animation: fadeInUp 1s ease-out forwards;
}

.bottom-left-panel { animation-delay: 0.2s; }
.bottom-center-panel { animation-delay: 0.4s; }
.bottom-right-panel { animation-delay: 0.6s; }

/* Portfolio Page Styles */
.portfolio-page {
    padding-top: 10rem;
}

/* Keep tabs and product grids above the decorative depth layer */
.portfolio-page .tabs-container,
.portfolio-page .portfolio-content {
    position: relative;
    z-index: 2;
}

.portfolio-page .tabs-container {
    padding-bottom: 5.5rem;
}

/* Space between category title and product grid */
.portfolio-page .section-header {
    margin-bottom: 0.75rem;
}

.portfolio-page .title-pill {
    margin-bottom: 2.25rem;
    padding: 1rem 2.85rem;
}

.portfolio-page .category-section {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
}

.portfolio-page .products-grid {
    gap: 3.5rem;
    row-gap: 4.75rem;
}

.portfolio-page .product-card {
    margin-top: 3.75rem;
    padding: 12.625rem 2.35rem 2.6rem 2.45rem;
}

.portfolio-page .product-image {
    top: -8.1rem;
    width: 330px;
    height: 330px;
}

.portfolio-page .product-card:hover .product-image {
    transform: translateX(-50%) translateY(-8px) scale(1.06);
}

.static-nav {
    position: fixed !important;
    background: rgba(18, 51, 38, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-section {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.portfolio-footer {
    padding: 4rem;
    text-align: center;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-footer p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.back-home {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #a8cf45;
    transition: var(--transition);
}

.back-home:hover {
    color: #a8cf45;
}

.hero-title .highlight {
    color: #c5a059;
}

.nav-links a.active {
    color: white;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #a8cf45;
}

@media (max-width: 900px) {
    .portfolio-page { padding-top: 8rem; }
    .category-section { padding: 4rem 2rem; }

    .portfolio-page .tabs-container {
        padding-bottom: 3.25rem;
    }

    .portfolio-page .category-section {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .portfolio-page .products-grid {
        gap: 2.5rem;
        row-gap: 3.5rem;
    }
}

/* Tabs Styling */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 4rem 4rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-btn.active {
    background: #a8cf45;
    color: var(--bg-dark);
    border-color: #a8cf45;
    box-shadow: 0 10px 30px rgba(168, 207, 69, 0.2);
}

.category-section {
    transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
    .tabs-container { padding: 0 2rem 2rem; justify-content: flex-start; }
    .tab-btn { padding: 0.6rem 1.5rem; font-size: 0.85rem; }
}

.portfolio-load-status {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 80, 80, 0.12);
    border: 1px solid rgba(255, 120, 120, 0.35);
    border-radius: 12px;
}

.portfolio-load-status.is-info {
    background: rgba(168, 207, 69, 0.08);
    border-color: rgba(168, 207, 69, 0.28);
    color: rgba(255, 255, 255, 0.92);
}

.portfolio-load-status[hidden] {
    display: none !important;
}

/* Main Footer Styling */
.main-footer {
    padding: 8rem 4rem 4rem;
    background: transparent; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-top: 2rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #a8cf45;
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 8rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-parent-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.footer-parent-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.03em;
    max-width: 28rem;
    line-height: 1.5;
}

.footer-greenmart-logo {
    height: 52px;
    width: auto;
    max-width: min(240px, 85vw);
    object-fit: contain;
    display: block;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

@media (max-width: 1000px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .main-footer { padding: 4rem 2rem 2rem; }
    .footer-col h4 { margin-bottom: 1.5rem; }
    .footer-bottom { margin-top: 4rem; }
}

/* About Us Section */
.about-section {
    padding: 8rem 4rem;
    background: transparent;
    position: relative;
    z-index: 5;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.founder-frame {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 40px 120px 40px 120px; /* Distinct organic shape */
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.founder-frame img {
    width: 100%;
    height: auto;
    border-radius: 30px 110px 30px 110px;
    object-fit: cover;
    display: block;
}

.vision-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-name {
    display: block;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: #a8cf45;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .vision-title { font-size: 2.2rem; }
}

/* Mobile Optimization & Responsive Refinement */

body { overflow-x: hidden; }

/* Mobile Menu Toggle Animation */
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Toggle Display */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001; /* Above mobile nav */
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

@media (max-width: 900px) {
    #navbar { 
        padding: 1.5rem 2rem; 
        position: fixed; 
        width: 100%; 
        background: rgba(18, 51, 38, 0.95); 
        backdrop-filter: blur(10px); 
        z-index: 1002;
    }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; 
        height: 100vh;
        background: #0d261d;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
        display: flex;
    }

    .nav-links.active { right: 0; }
    
    .nav-links a { 
        font-size: 1.8rem; 
        font-weight: 700;
        color: white;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-actions { display: none; }

    .nav-links a.nav-link-partner-mobile-only {
        display: block;
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }

    /* Global Section Adjustments */
    section { padding: 6rem 1.5rem !important; }

    .portfolio-page section.category-section {
        padding: 3.25rem 1.5rem 3.85rem !important;
    }

    .portfolio-page .section-header {
        margin-bottom: 0.65rem !important;
    }

    .portfolio-page .title-pill {
        margin-bottom: 1.5rem !important;
    }

    .section-header { margin-bottom: 3rem; }
    
    .title-pill { padding: 1rem 2rem; }
    .pill-text { font-size: 1.6rem; }

    /* Product cards (mobile nav breakpoint): slightly compact, keep glass + asymmetry */
    .product-card {
        margin-top: 4rem;
        padding: 11.5rem 1.65rem 2.35rem !important;
        border-radius: 24px 88px 32px 28px !important;
    }

    .product-image {
        width: 286px !important;
        height: 286px !important;
        top: -6.85rem !important;
    }

    .portfolio-page .product-card {
        margin-top: 3.65rem !important;
        padding: 11.25rem 1.55rem 2.35rem !important;
    }

    .portfolio-page .product-image {
        width: 274px !important;
        height: 274px !important;
        top: -6.55rem !important;
    }

    .portfolio-page .product-card:hover .product-image {
        transform: translateX(-50%) translateY(-6px) scale(1.05) !important;
    }

    .product-name { font-size: 1.5rem; }
    .product-desc { font-size: 0.95rem; }

    /* About Section Mobile */
    .about-container { gap: 3rem; }
    .founder-frame { padding: 1rem; border-radius: 30px 80px 30px 80px; }
    .vision-title { font-size: 2rem; }
    .about-text { font-size: 1.1rem; }

    /* Footer Mobile */
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { margin-top: 4rem; }
}

@media (max-width: 500px) {
    .hero-section { min-height: 80vh; }
    .hero-title { font-size: 2.5rem; }

    .product-card {
        margin-top: 3.5rem;
        padding: 10.5rem 1.35rem 2.1rem !important;
        border-radius: 22px 72px 28px 24px !important;
    }

    .product-image {
        width: 254px !important;
        height: 254px !important;
        top: -5.95rem !important;
    }

    .portfolio-page .product-card {
        margin-top: 3.25rem !important;
        padding: 10.25rem 1.25rem 2rem !important;
    }

    .portfolio-page .product-image {
        width: 244px !important;
        height: 244px !important;
        top: -5.75rem !important;
    }
}

/* --- DEFINITIVE HERO STYLES --- */
.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-text-wrapper {
    max-width: 1100px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    color: #ffffff !important; /* Force white */
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: #a8cf45 !important; /* Force lime green */
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #a8cf45 !important;
    color: #0d261d !important;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(168, 207, 69, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .hero-cta { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn-primary, .btn-secondary { padding: 1.2rem 2rem; width: 100%; }
}

.app-container {
    background: var(--bg-dark);
    min-height: 100vh;
    position: relative;
}

/* --- BACKGROUND DEPTH EFFECTS --- */
.depth-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Bring forward slightly but keep behind text */
    overflow: hidden;
}

.depth-item {
    position: absolute;
    opacity: 0.25; /* Increased visibility */
    filter: blur(var(--blur));
    transform: rotate(var(--rotate)) scale(var(--scale));
    z-index: 1;
}

/* Depth Presets - Unified Blur */
.d-1 { --blur: 10px; --scale: 0.6; }
.d-2 { --blur: 10px; --scale: 1.0; }
.d-3 { --blur: 10px; --scale: 1.5; }
.d-4 { --blur: 10px; --scale: 2.2; }

/* ... existing positions ... */

/* Scattered Position Presets */
.p-tl { top: 5%; left: 2%; --rotate: -15deg; }
.p-tr { top: 12%; right: 2%; --rotate: 45deg; }
.p-ml { top: 35%; left: -5%; --rotate: 110deg; }
.r-pos-4 { top: 45%; right: -5%; --rotate: -30deg; } /* Reusing some old classes but updating values */
.r-pos-5 { top: 55%; left: 5%; --rotate: 20deg; }
.p-mr { top: 68%; right: 2%; --rotate: -60deg; }
.p-bl { top: 88%; left: 4%; --rotate: 150deg; }
.p-br { top: 92%; right: 5%; --rotate: 80deg; }
.p-cc { top: 50%; left: 45%; --rotate: 0deg; }
.p-tc { top: 2%; left: 40%; --rotate: 15deg; }
.p-bc { top: 95%; left: 50%; --rotate: -10deg; }

/* Animation for subtle floating */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotate)) scale(var(--scale)); }
    50% { transform: translateY(-30px) rotate(calc(var(--rotate) + 5deg)) scale(var(--scale)); }
}

.depth-item {
    animation: float 15s ease-in-out infinite;
}

@media (max-width: 900px) {
    .depth-item { opacity: 0.08; --scale: 0.6 !important; }
}

/* ——— Supply Chain page ——— */
.supply-chain-page {
    position: relative;
    padding: 10rem 4rem 7rem;
    max-width: 1120px;
    margin: 0 auto;
    z-index: 2;
}

.supply-chain-depth {
    z-index: 0;
    pointer-events: none;
}

.supply-chain-page > *:not(.supply-chain-depth) {
    position: relative;
    z-index: 1;
}

.supply-chain-hero {
    margin: 0 auto 5.5rem;
    max-width: 46rem;
    text-align: center;
}

.supply-chain-eyebrow {
    margin-bottom: 1.1rem;
}

.supply-chain-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.45rem, 4.8vw, 3.65rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
}

.supply-chain-lede {
    font-size: 1.08rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.72);
    max-width: 40rem;
    margin: 0 auto;
}

.supply-chain-section {
    margin-bottom: 5.5rem;
}

.supply-chain-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.supply-chain-intro {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
    line-height: 1.68;
    margin-bottom: 0;
    max-width: 38rem;
}

/* — Process: centered vertical flow — */
.supply-chain-process-head {
    text-align: center;
    margin-bottom: 3.25rem;
}

.supply-chain-process-head .supply-chain-intro {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.35rem;
}

.supply-chain-flow {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.supply-chain-flow-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    border-radius: 99px;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(168, 207, 69, 0.85) 0%,
        rgba(168, 207, 69, 0.35) 18%,
        rgba(168, 207, 69, 0.18) 50%,
        rgba(168, 207, 69, 0.35) 82%,
        rgba(168, 207, 69, 0.75) 100%
    );
    box-shadow: 0 0 24px rgba(168, 207, 69, 0.15);
    pointer-events: none;
}

.supply-chain-flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.supply-chain-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-bottom: 2.35rem;
}

.supply-chain-flow-item:last-child {
    padding-bottom: 0;
}

.supply-chain-flow-node {
    position: relative;
    z-index: 2;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.15rem;
    background: radial-gradient(
        circle at 35% 30%,
        rgba(212, 236, 140, 0.95) 0%,
        #7fb83a 55%,
        #4a7a32 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 0 0 4px rgba(18, 51, 38, 0.65),
        0 12px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s ease;
}

.supply-chain-flow-item:hover .supply-chain-flow-node {
    transform: scale(1.06);
    box-shadow:
        0 0 0 4px rgba(18, 51, 38, 0.65),
        0 16px 36px rgba(168, 207, 69, 0.35);
}

.supply-chain-flow-num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #123326;
}

.supply-chain-flow-card {
    width: 100%;
    max-width: 28rem;
    padding: 1.65rem 1.75rem 1.6rem;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.09) 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(13, 38, 29, 0.5) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.supply-chain-flow-item:hover .supply-chain-flow-card {
    border-color: rgba(168, 207, 69, 0.32);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

.supply-chain-flow-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.55rem;
    letter-spacing: 0.02em;
}

.supply-chain-flow-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.62);
}

.supply-chain-pillars {
    padding: 0 !important;
    margin-bottom: 5.5rem;
}

.supply-chain-pillars .section-header {
    margin-bottom: 3.25rem;
}

.supply-chain-pillars .feature-card {
    padding: 2.35rem 1.75rem;
}

.supply-chain-docs-head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.supply-chain-docs-head .supply-chain-intro {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.35rem;
}

.supply-chain-docs .supply-chain-doc-list {
    list-style: none;
    padding: 2rem 2.25rem 2.1rem;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    max-width: 36rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.supply-chain-doc-list li {
    position: relative;
    padding-left: 1.45rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: left;
}

.supply-chain-doc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4ec8c, #7fb83a);
    box-shadow: 0 0 10px rgba(168, 207, 69, 0.35);
}

.supply-chain-faq.faq-section {
    padding: 0 0 3rem !important;
    margin-bottom: 3rem;
    background: transparent;
}

.supply-chain-faq .section-header {
    margin-bottom: 3rem;
}

.supply-chain-cta {
    text-align: center;
    padding: 2.75rem 2rem 2.5rem;
    border: 1px solid rgba(168, 207, 69, 0.2);
    border-radius: 28px;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(13, 38, 29, 0.65) 55%,
        rgba(18, 51, 38, 0.9) 100%
    );
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.supply-chain-cta-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.08rem, 2.2vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.45;
    margin: 0 auto 1.5rem;
    max-width: 26rem;
}

.supply-chain-cta .btn-contact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 auto;
    padding: 0.95rem 2.15rem;
    border: none;
    background: linear-gradient(180deg, #d4ec8c 0%, #a8cf45 48%, #8fb83a 100%);
    color: #123326;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow:
        0 10px 32px rgba(168, 207, 69, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.supply-chain-cta .btn-contact:hover {
    background: #ffffff;
    color: #123326;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.supply-chain-cta .btn-contact .arrow {
    font-weight: 400;
    opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
    .supply-chain-flow-node,
    .supply-chain-flow-card {
        transition: none;
    }

    .supply-chain-flow-item:hover .supply-chain-flow-node,
    .supply-chain-flow-item:hover .supply-chain-flow-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .supply-chain-page {
        padding: 8rem 1.35rem 4.5rem;
    }

    .supply-chain-flow {
        max-width: 100%;
        padding: 0;
    }

    .supply-chain-flow-card {
        padding: 1.4rem 1.25rem 1.35rem;
    }

    .supply-chain-docs .supply-chain-doc-list {
        padding: 1.5rem 1.25rem;
    }
}
