:root {
    --primary-green: #2C5F2D;
    --secondary-cream: #F5F1E8;
    --accent-gold: #D4AF37;
    --neutral-grey: #36454F;
    --bg-white: #FAFAF8;
    --text-dark: #2A2A2A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: var(--primary-green);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(44, 95, 45, 0.15);
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* ================================================
   MODERN HAMBURGER MENU
   ================================================ */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.06);
}

.hamburger span {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.3s ease;
}

.hamburger span:nth-child(1) {
    transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(7px);
}

/* X morph animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem;
        z-index: 999;
        display: none;
        transform: translateY(-8px);
        opacity: 0;
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

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

    .nav-links li a {
        display: block;
        padding: 0.75rem 2rem;
        font-size: 0.9375rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: color 0.2s, padding-left 0.2s;
    }

    .nav-links li a:hover {
        color: var(--accent-gold);
        padding-left: 2.5rem;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, #234d24 100%);
    color: white;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.4;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.btn-primary:hover {
    background: #c9a332;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* Trust Bar */
.trust-bar {
    background: var(--secondary-cream);
    padding: 2rem;
    border-top: 3px solid var(--accent-gold);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--neutral-grey);
}

.trust-item::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-alt {
    background: var(--secondary-cream);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--neutral-grey);
}

.section-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 900px;
    color: var(--neutral-grey);
}

/* Grid Layouts */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--neutral-grey);
    line-height: 1.8;
}

/* Product Cards */
.product-card {
    background: linear-gradient(to bottom, var(--secondary-cream) 0%, white 100%);
    border-top: 4px solid var(--accent-gold);
}

.product-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-green);
}

.step p {
    color: var(--neutral-grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Customer Types */
.customer-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.customer-type {
    background: white;
    padding: 2rem;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.customer-type h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.customer-type p {
    color: var(--neutral-grey);
    font-size: 0.9rem;
}

/* About Page Styles */
.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Blog Styles */
.blog-post {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.blog-post h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.blog-post h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-grey);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--neutral-grey);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background: var(--primary-green);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Spec Table */
.spec-table {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

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

.spec-label {
    font-weight: 600;
    color: var(--primary-green);
}

.spec-value {
    color: var(--neutral-grey);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #234d24 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.card {
    animation: fadeIn 0.6s ease-out backwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 1.4rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .tagline {
        font-size: 1rem;
        letter-spacing: 0.6px;
    }
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 1rem;
    }
}

@media (max-width: 900px) {

    .three-col-grid,
    .process-steps,
    .customer-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .card,
    .value-card,
    .blog-post {
        padding: 2rem;
    }
}

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.95rem;
        padding: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 768px) {
    .spec-table {
        padding: 1.5rem;
    }

    .spec-row {
        flex-direction: column;
        gap: 0.4rem;
    }

    .spec-label {
        font-weight: 600;
    }
}

.btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

/* ============================================================
   DYNAMIC HEXPRS-INSPIRED COMPONENTS — FoxNutSource theme
   ============================================================ */

/* ---- Scroll Reveal ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(.22, 1, .36, 1), transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up.delay-1 {
    transition-delay: 0.1s;
}

.reveal-up.delay-2 {
    transition-delay: 0.2s;
}

.reveal-up.delay-3 {
    transition-delay: 0.3s;
}

.reveal-up.delay-4 {
    transition-delay: 0.4s;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Badge / Pill ---- */
.fnc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(44, 95, 45, 0.08);
    border: 1px solid rgba(44, 95, 45, 0.25);
    border-radius: 999px;
    padding: 0.35rem 1rem 0.35rem 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.4px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.fnc-badge .badge-ping {
    position: relative;
    width: 10px;
    height: 10px;
}

.fnc-badge .badge-ping::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-green);
    border-radius: 50%;
    animation: fnc-ping 1.6s ease infinite;
    opacity: 0.5;
}

.fnc-badge .badge-ping::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary-green);
    border-radius: 50%;
}

@keyframes fnc-ping {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    80% {
        transform: scale(2.2);
        opacity: 0;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.badge-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(44, 95, 45, 0.3);
}

/* ---- Section label (small tag above heading) ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.section-label svg {
    flex-shrink: 0;
}

/* ---- Bento Grid ---- */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.bento-card {
    background: white;
    border-radius: 10px;
    padding: 2.2rem 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
}

.bento-card.col-8 {
    grid-column: span 8;
}

.bento-card.col-7 {
    grid-column: span 7;
}

.bento-card.col-5 {
    grid-column: span 5;
}

.bento-card.col-4 {
    grid-column: span 4;
}

.bento-card.col-6 {
    grid-column: span 6;
}

.bento-card.col-12 {
    grid-column: span 12;
}

@media (max-width: 900px) {

    .bento-card.col-8,
    .bento-card.col-7,
    .bento-card.col-5,
    .bento-card.col-4,
    .bento-card.col-6 {
        grid-column: span 12;
    }
}

.bento-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.gold-bg-soft {
    background: rgba(212, 175, 55, 0.12);
}

.green-bg-soft {
    background: rgba(44, 95, 45, 0.10);
}

.cream-bg-soft {
    background: rgba(245, 241, 232, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.slate-bg-soft {
    background: rgba(54, 69, 79, 0.08);
}

.bento-h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.bento-p {
    color: var(--neutral-grey);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ---- Gradient accent card ---- */
.gold-accent-card {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c49a28 100%);
    color: white;
}

.gold-accent-card .bento-h3 {
    color: white;
}

.gold-accent-card .bento-p {
    color: rgba(255, 255, 255, 0.88);
}

.green-accent-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, #234d24 100%);
    color: white;
}

.green-accent-card .bento-h3 {
    color: white;
}

.green-accent-card .bento-p {
    color: rgba(255, 255, 255, 0.88);
}

/* ---- Bento glow overlay ---- */
.bento-glow-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Bento row-flex layout ---- */
.bento-card.row-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bento-big-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 95, 45, 0.1);
}

/* ---- Step Connector (vertical line on process pages) ---- */
.step-connected {
    position: relative;
}

.step-connected .step::before {
    content: '';
    position: absolute;
    left: 1.45rem;
    top: 3.5rem;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.step-connected .step:last-child::before {
    display: none;
}

/* ---- Trust / Stat bar ---- */
.trust-bar-animated {
    background: var(--secondary-cream);
    border-top: 3px solid var(--accent-gold);
    padding: 1.8rem 2rem;
    overflow: hidden;
    display: flex;
    /* gap: 100px; */
    column-gap: 100px;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.trust-bar-track {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--neutral-grey);
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trust-chip.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-chip svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.trust-chip:nth-child(1) {
    transition-delay: 0.0s;
}

.trust-chip:nth-child(2) {
    transition-delay: 0.1s;
}

.trust-chip:nth-child(3) {
    transition-delay: 0.2s;
}

.trust-chip:nth-child(4) {
    transition-delay: 0.3s;
}

.trust-chip:nth-child(5) {
    transition-delay: 0.4s;
}

/* ---- Animated process step number ---- */
.step-number-anim {
    transition: background 0.3s ease, transform 0.3s ease;
}

.step:hover .step-number-anim {
    background: var(--accent-gold);
    transform: scale(1.1);
}

/* ---- Value / commitment card enhancements ---- */
.value-card-enhanced {
    background: white;
    padding: 2.2rem 2.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent-gold);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card-enhanced:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-card-enhanced .vc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(44, 95, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.value-card-enhanced h3 {
    color: var(--primary-green);
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}

.value-card-enhanced p {
    color: var(--neutral-grey);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ---- Customer type icon enhanced ---- */
.customer-type-enhanced {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}

.customer-type-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.11);
    border-top-color: var(--accent-gold);
}

.customer-type-enhanced .ct-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.customer-type-enhanced h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    font-size: 1.05rem;
    margin: 0;
}

.customer-type-enhanced p {
    color: var(--neutral-grey);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Spec table enhanced with bento feel ---- */
.grade-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.grade-card-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #234d24 100%);
    color: white;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grade-card-header h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
}

.grade-badge-size {
    background: rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--accent-gold);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.grade-card-body {
    padding: 1.8rem 2rem;
}

.grade-spec-row {
    display: flex;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
}

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

.grade-spec-label {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    font-size: 0.9rem;
    min-width: 160px;
}

.grade-spec-value {
    color: var(--neutral-grey);
    font-size: 0.93rem;
}

/* ---- Contact icon-enhanced card ---- */
.contact-info-enhanced {
    background: white;
    padding: 1.8rem 2rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    gap: 1.2rem;
    /* align-items: flex-start; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-enhanced:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.ci-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(44, 95, 45, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.contact-info-enhanced h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-info-enhanced p {
    margin-bottom: 0.35rem;
    color: var(--neutral-grey);
    font-size: 0.92rem;
}


/* ================================================
   PREMIUM SUBMIT BUTTON
   ================================================ */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a4d1b 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 0.875rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44, 95, 45, 0.4), 0 0 0 0 rgba(44, 95, 45, 0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(44, 95, 45, 0.5), 0 0 0 3px rgba(44, 95, 45, 0.15);
}

.submit-btn:hover::before {
    transform: translateX(100%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(44, 95, 45, 0.4);
}

.submit-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* ---- Stat counters row ---- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Crimson Pro', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neutral-grey);
    margin-top: 0.5rem;
}

.stat-accent {
    color: var(--accent-gold);
}

/* ---- Why bento special ---- */
.why-bento-intro {
    background: linear-gradient(135deg, #f9f6ed 0%, #f0ede1 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-bento-intro .bento-h3 {
    color: var(--primary-green);
}

/* ---- Inline SVG colour helpers ---- */
.icon-green {
    color: var(--primary-green);
}

.icon-gold {
    color: var(--accent-gold);
}

.icon-grey {
    color: var(--neutral-grey);
}



@media (max-width: 480px) {

    .spec-table {
        padding: 1.4rem;
    }

    .spec-row {
        display: block;
        padding: 0.8rem 0;
    }

    .spec-label,
    .spec-value {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: none;
        white-space: normal;
    }

    .spec-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--neutral-grey);
        opacity: 0.8;
        margin-bottom: 0.25rem;
    }

    .spec-value {
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.55;
    }
}

/* SLIDER */
.slider {
    width: 100%;
    max-width: 800px;   /* optional limit */
    aspect-ratio: 16 / 9; /* keeps height responsive */
    overflow: hidden;
    position: relative;
    margin: auto;
}

.slides {
    display: flex;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #32CD32;
    /* lime green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #28a428;
}

/* ---- Demo Video Glow Pulse ---- */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 15px rgba(44, 95, 45, 0.15);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 30px rgba(44, 95, 45, 0.4), 0 0 60px rgba(44, 95, 45, 0.15);
    }
}

.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

.demo-video-container:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,.45), 0 0 40px rgba(44, 95, 45, 0.5) !important;
}