/* =========================================
   VARIABLES & THEMING - Coffee Brand
   ========================================= */
:root {
    /* Colors - Deep Warm Dark */
    --bg-dark: #0d0a07;
    --bg-darker: #080604;
    --bg-card: rgba(30, 20, 10, 0.5);
    --bg-card-hover: rgba(45, 30, 15, 0.7);

    /* Accents - Coffee & Amber */
    --primary: #c8913a;
    --primary-glow: rgba(200, 145, 58, 0.35);
    --secondary: #8b5e3c;
    --accent-cream: #f0e0c0;
    --accent-green: #4caf50;
    --accent-red: #e53935;

    /* Text */
    --text-main: #f5efe6;
    --text-muted: #a89070;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #c8913a 0%, #7a4f1e 100%);
    --gradient-card: linear-gradient(180deg, rgba(45, 28, 10, 0.7) 0%, rgba(20, 12, 4, 0.4) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Borders */
    --border-subtle: 1px solid rgba(200, 145, 58, 0.08);
    --border-highlight: 1px solid rgba(200, 145, 58, 0.2);

    /* Shadows & Effects */
    --glass-blur: blur(14px);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
}

/* Products Grid 4 Columns on Desktop */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.badge {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* Utilities */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.accent-green {
    color: var(--accent-green);
}

.accent-red {
    color: var(--accent-red);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* =========================================
   ORBS / BACKGROUND GLOW
   ========================================= */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.orb-1 {
    top: -80px;
    left: -150px;
    width: 550px;
    height: 550px;
    background: var(--primary-glow);
}

.orb-2 {
    top: 300px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: rgba(122, 79, 30, 0.25);
}

.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: var(--primary-glow);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 17px 34px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 8px 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px var(--primary-glow);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--text-main);
}

.btn-primary-outline:hover {
    background: rgba(200, 145, 58, 0.12);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: var(--border-subtle);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(200, 145, 58, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 145, 58, 0);
    }
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 100;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 10, 7, 0.88);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a:not(.btn):hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative !important;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    display: none;
    pointer-events: none;
}

.hero.bg-video .hero-video-bg {
    display: block;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28);
}

.hero-image-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    display: none;
    pointer-events: none;
}

.hero.bg-image .hero-image-bg {
    display: block;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none !important;
    filter: brightness(0.28);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(200, 145, 58, 0.15);
    border: 1px solid rgba(200, 145, 58, 0.4);
    border-radius: 30px;
    color: var(--accent-cream);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats .bx {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Hero Visual Card */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: var(--border-subtle);
    border-radius: 18px;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.hero-product-showcase {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.showcase-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.s-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.s-badge.fresh {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.s-badge.premium {
    background: rgba(200, 145, 58, 0.15);
    color: var(--primary);
    border: var(--border-highlight);
}

.s-badge.origin {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: var(--border-subtle);
}

/* =========================================
   GLASS CARDS / GRID
   ========================================= */
.glass-card {
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 145, 58, 0.2);
    background: var(--bg-card-hover);
}

.grid {
    display: grid;
    gap: 28px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Problem Cards - Premium Redesign */
.problem .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding-top: 30px;
}

@media (min-width: 1200px) {
    .problem .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.danger-card {
    position: relative;
    border: 1px solid rgba(229, 57, 53, 0.1);
    background: rgba(229, 57, 53, 0.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: visible;
}


.danger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    opacity: 0.6;
}

.danger-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 57, 53, 0.4);
    background: rgba(229, 57, 53, 0.05);
    box-shadow: 0 15px 50px rgba(229, 57, 53, 0.15);
}


.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.2), rgba(229, 57, 53, 0.05));
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(229, 57, 53, 0.2);
    transition: 0.3s ease;
}

.danger-card:hover .card-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.4);
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
}

.danger-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
    color: var(--text-main);
}

.danger-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Feature Items */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px 28px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.icon-wrapper {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: var(--gradient-brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 18px var(--primary-glow);
}

.feature-text h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* =========================================
   TABS (HOW IT WORKS)
   ========================================= */
.tabs-container {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: var(--border-subtle);
    background: rgba(0, 0, 0, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(200, 145, 58, 0.05);
}

.tab-panel {
    display: none;
    padding: 40px;
}

.tab-panel.active {
    display: block;
}

.tab-item-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-text h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.tab-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tab-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.tab-features li .bx {
    color: var(--primary);
    font-size: 1.2rem;
}

/* =========================================
   BENEFITS BELT
   ========================================= */
.benefits-belt {
    background: linear-gradient(90deg, rgba(13, 10, 7, 0.95), rgba(25, 16, 6, 0.95));
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    padding: 60px 0;
}

.belt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.belt-item h2 {
    font-size: 2.4rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    line-height: 1;
}

.belt-item p {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.stars {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    padding: 0;
    /* Remove default glass-card padding */
    border-top: 3px solid rgba(200, 145, 58, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card.featured {
    border-top-color: var(--primary);
}

.product-card:hover {
    border-top-color: var(--primary);
}

.product-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-bottom: 0;
    transition: transform 0.5s ease;
    display: block;
    flex-shrink: 0;
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 700;
    background: rgba(200, 145, 58, 0.12);
    color: var(--primary);
    border: var(--border-highlight);
    margin-bottom: 12px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    margin-bottom: 6px;
    font-size: 0.98rem;
    line-height: 1.3;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.flavor-notes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.flavor-note {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.62rem;
    /* Even smaller for 1 row */
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: var(--border-subtle);
    white-space: nowrap;
}


/* =========================================
   ORDERING / HOW TO BUY
   ========================================= */
.order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.order-step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.order-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-darker);
    border-top: var(--border-subtle);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: var(--border-subtle);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* =========================================
   BIZ SECTION (Photo + Text Overlay)
   ========================================= */
.biz-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.biz-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    display: none;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.biz-section:hover .biz-bg {
    transform: scale(1.0);
}

.biz-overlay {
    position: absolute;
    inset: 0;
    /* Dark gradient only on left side, fades to transparent on right */
    background: linear-gradient(to right,
            rgba(5, 3, 1, 0.88) 0%,
            rgba(5, 3, 1, 0.72) 35%,
            rgba(5, 3, 1, 0.2) 65%,
            transparent 100%);
}

.biz-content {
    position: relative;
    z-index: 2;
}

.biz-text {
    max-width: 480px;
}

.biz-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.biz-text p {
    color: rgba(240, 224, 192, 0.8);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.biz-text p strong {
    color: var(--accent-cream);
    font-weight: 700;
}

/* =========================================
   STEPPER ACCORDION (CARA ORDER)
   ========================================= */
.stepper-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: 16px;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(200, 145, 58, 0.3);
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-muted);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.step-item.open .step-num {
    border-color: var(--primary);
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 0 24px var(--primary-glow);
}

.step-line {
    width: 2px;
    flex: 1;
    min-height: 30px;
    background: linear-gradient(to bottom, rgba(200, 145, 58, 0.3), transparent);
    margin-top: 8px;
}

.step-right {
    flex: 1;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.step-item.open .step-right {
    border-color: rgba(200, 145, 58, 0.25);
    box-shadow: 0 6px 24px rgba(200, 145, 58, 0.1);
}

.step-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    text-align: left;
    transition: background 0.3s;
}

.step-trigger:hover {
    background: rgba(200, 145, 58, 0.04);
}

.step-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-hicon {
    font-size: 1.5rem;
    color: var(--primary);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.step-chevron {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.step-item.open .step-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.step-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-body.open {
    max-height: 400px;
}

.step-body-inner {
    padding: 0 24px 24px;
    border-top: var(--border-subtle);
}

.step-body-inner p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 16px 0;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-features li .bx {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-visual {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(200, 145, 58, 0.1);
    border: 1px solid rgba(200, 145, 58, 0.25);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.step-visual .bx {
    font-size: 1.2rem;
}

/* =========================================
   ACCORDION (FAQ)
   ========================================= */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.acc-item {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-left: 3px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.acc-item.open {
    border-left-color: var(--primary);
    box-shadow: 0 8px 30px rgba(200, 145, 58, 0.15);
}

.acc-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

.acc-trigger:hover {
    background: rgba(200, 145, 58, 0.05);
}

.acc-trigger>span:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acc-icon-q {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(200, 145, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        border-color 0.3s ease;
    font-size: 1.1rem;
}

.acc-item.open .acc-icon {
    transform: rotate(45deg);
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
}

.acc-body.open {
    max-height: 300px;
}

.acc-body p {
    padding: 0 28px 24px 52px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.acc-body p strong {
    color: var(--accent-cream);
    font-weight: 600;
}

/* =========================================
   GRIND SCANNER (FUTURISTIC GUIDE)
   ========================================= */
.grind-scanner-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(200, 145, 58, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.scanner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.scanner-header {
    text-align: center;
    margin-bottom: 60px;
}

.scanner-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(200, 145, 58, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(200, 145, 58, 0.2);
}

.scanner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.data-pod {
    background: rgba(20, 18, 16, 0.75);
    border: 1px solid rgba(200, 145, 58, 0.15);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    overflow: hidden;
    /* Interactive variables */
    --x: 50%;
    --y: 50%;
}

.pod-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(600px circle at var(--x) var(--y),
            rgba(200, 145, 58, 0.15),
            transparent 40%);
}

/* Particle/Grain overlay inside glow */
.pod-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3F%3E%3Cfilter id='noiseFilter'%3F%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.data-pod:hover .pod-glow {
    opacity: 1;
}

.data-pod:hover {
    border-color: rgba(200, 145, 58, 0.4);
    box-shadow: 0 0 40px rgba(200, 145, 58, 0.1);
    transform: translateY(-8px);
}

.pod-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(200, 145, 58, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.data-pod:hover .pod-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.pod-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2.5s infinite;
}

/* Staggered pulse delays for organic feel */
.data-pod:nth-child(1) .status-dot {
    animation-delay: 0s;
}

.data-pod:nth-child(2) .status-dot {
    animation-delay: 0.8s;
}

.data-pod:nth-child(3) .status-dot {
    animation-delay: 1.6s;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(2);
        opacity: 0.4;
        filter: blur(1px);
    }
}

.pod-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.pod-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.pod-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.meta-label {
    color: var(--text-muted);
}

.meta-value {
    color: var(--accent-cream);
    font-weight: 600;
}

/* =========================================
   TESTIMONIALS (AVANT-GARDE SPLIT)
   ========================================= */
.section-testi-avant {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.container-wide {
    max-width: 1400px;
}

.avant-split {
    display: flex;
    align-items: stretch;
    /* SYMMETRY: High alignment */
    gap: 50px;
}

/* Left: Visual Panel - Matches Content Height */
.avant-visual-panel {
    flex: 1;
    position: relative;
    min-height: 400px;
    /* Default min height */
}

.avant-img-wrapper {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.avant-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.avant-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 10, 7, 0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px;
}

.avant-visual-text h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1.2;
}

.avant-visual-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

/* Right: Content Panel - Defines Section Height */
.avant-content-panel {
    flex: 1.1;
    display: flex;
    /* Align to top so first testimonial defines start */
    align-items: flex-start;
    padding: 10px 0;
}

.avant-testi-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Spaced out without boxes */
    width: 100%;
    position: relative;
}

/* Large decorative quote mark */
.avant-testi-list::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 8rem;
    color: var(--accent-gold);
    opacity: 0.03;
    font-family: serif;
    pointer-events: none;
}

.avant-testi-item {
    position: relative;
    padding-bottom: 20px;
    background: transparent !important;
    /* Forces non-boxy */
    border: none !important;
}

/* Minimalist separator line instead of box */
.avant-testi-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-brand);
    opacity: 0.3;
}

.avant-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.avant-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.avant-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--accent-gold);
    background: var(--bg-card);
}

.avant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avant-author-info h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.avant-author-info span {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.avant-rating {
    color: #ffc107;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.avant-item-body p {
    color: #e0d8cf;
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .scanner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .belt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .avant-split {
        flex-direction: column;
        gap: 40px;
    }

    .avant-visual-panel {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(13, 10, 7, 0.98);
        padding: 30px 20px;
        border-bottom: 1px solid var(--primary-glow);
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .belt-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cards-grid,
    .products-grid,
    .scanner-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .biz-section {
        height: auto;
        padding: 80px 0;
    }

    .biz-text {
        text-align: center;
        max-width: 100%;
    }

    .biz-text a {
        margin: 0 auto;
    }

    .step-item {
        gap: 12px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-body-inner {
        padding: 0 15px 15px;
    }

    .showcase-img {
        height: 200px;
    }

    .avant-visual-panel {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}