:root {
    --landing-primary: #1B3D1A;
    /* Deep Industrial Green */
    --landing-accent: #4D9B50;
    /* Fresh Green */
    --landing-dark: #122611;
    --landing-light: #F1F8F1;
    --landing-gradient: linear-gradient(135deg, #1B3D1A 0%, #2E5A2D 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
.outfit-font {
    font-family: 'Outfit', sans-serif;
}

.hero-banner {
    background: linear-gradient(rgba(15, 30, 15, 0.7), rgba(0, 0, 0, 0.75)), url('../images/banner-charcoal-v2.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 140px 0 100px;
    overflow: hidden;
    position: relative;
}

.hero-form-wrapper {
    position: relative;
    z-index: 10;
}

.hero-form-wrapper .card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

.hero-form-wrapper .card-header {
    background: var(--landing-accent);
    /* Brighter green for hero form */
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(77, 155, 80, 0.1);
    color: var(--landing-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-premium {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(27, 61, 26, 0.12);
    border-color: rgba(77, 155, 80, 0.3);
}

.feature-card-premium:hover .product-benefit-icon {
    background: var(--landing-accent);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.type-badge {
    background: var(--landing-light);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    color: var(--landing-accent);
}

.section-tag {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--landing-accent);
    display: block;
    margin-bottom: 15px;
}

.industrial-bg {
    background-color: #f0f4f8;
    background-image:
        radial-gradient(at 0% 0%, rgba(13, 71, 161, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(0, 200, 83, 0.03) 0, transparent 50%);
}

.card-img-top-cover {
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-card-image-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.feature-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.feature-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-floating>label {
    font-size: 0.9rem;
    color: #666;
}

.scale-hover {
    transition: transform 0.3s ease;
}

.btn:hover .scale-hover {
    transform: translateX(5px);
}

.parallax-section {
    background: fixed center center no-repeat;
    background-size: cover;
}

/* Trust Section Premium Styles */
.trust-section {
    background: linear-gradient(135deg, #0f1112 0%, #1a1e20 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(77, 155, 80, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.stat-box {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.stat-card {
    width: 100%;
    padding: 45px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--landing-accent);
    margin-bottom: 25px;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.stat-box:hover .stat-card {
    transform: translateY(-15px);
    border-color: rgba(77, 155, 80, 0.5);
    background: rgba(77, 155, 80, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(77, 155, 80, 0.15);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1;
    background: linear-gradient(180deg, #FFFFFF 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--landing-accent);
    margin-top: 8px;
}

/* Conversion Section Dark Premium - REPLACED WITH WHITE VERSION FOR THIS SECTION */
.conversion-section-white {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-card-light {
    background: #fcfdfe;
    border: 1px solid #eef2f5;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.cta-card-light:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(77, 155, 80, 0.4);
    transform: translateY(-5px);
}

.icon-box-premium {
    width: 70px;
    height: 70px;
    background: rgba(77, 155, 80, 0.1);
    border: 1px solid rgba(77, 155, 80, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--landing-accent);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-card-light:hover .icon-box-premium {
    background: var(--landing-accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.sales-light {
    background: #fcfdfe;
    border: 1px solid #eef2f5;
    border-radius: 24px;
    padding: 30px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.sales-light:hover {
    background: white;
    border-color: rgba(77, 155, 80, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.bg-white-soft {
    background-color: #f8f9fa;
}

.backdrop-blur-light {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.8);
}

.footprint-section {
    background: #080a0b;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Location Section Strip */
.location-strip {
    background-color: #f0f7f0;
    /* Ultra-light landing green */
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.location-strip .location-title {
    color: #1b3d1a;
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.location-strip .location-sub {
    color: #4d9b50;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 80px !important;
    }

    .hero-banner {
        padding-top: 30px !important;
        min-height: auto !important;
    }

    .hero-banner .lead {
        font-size: 1rem !important;
    }

    .hero-banner .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* Fix for long floating labels and buttons on narrow screens */
    .form-floating>label {
        font-size: 0.8rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .btn span {
        white-space: normal !important;
        display: block;
        line-height: 1.2;
    }

    /* Reduce form field height and container border radius */
    .hero-banner .card {
        border-radius: 16px !important;
    }

    .form-floating>.form-control,
    .form-floating>.form-select {
        height: calc(3rem + 2px) !important;
        /* Reduced from 3.5rem default */
        min-height: auto !important;
        padding-top: 1.25rem !important;
        padding-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
    }

    .form-floating>label {
        padding-top: 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .hero-banner .row.g-4 {
        --bs-gutter-y: 10px !important;
    }

    /* Trust Section Mobile Compactness */
    .trust-section {
        padding: 50px 0 !important;
    }

    .trust-section .display-5 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .stat-card {
        padding: 25px 15px !important;
        border-radius: 20px !important;
    }

    .stat-icon {
        font-size: 2.2rem !important;
        margin-bottom: 12px !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }

    .trust-section .row.g-5 {
        --bs-gutter-y: 1.5rem !important;
        --bs-gutter-x: 1rem !important;
    }
}

/* Material Source Tags Design */
.material-source-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px 2px;
    background: rgba(77, 155, 80, 0.08);
    /* Subtle green tint */
    color: #4d9b50;
    border: 1px solid rgba(77, 155, 80, 0.2);
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.material-source-tag:hover {
    background: rgba(77, 155, 80, 0.15);
    border-color: rgba(77, 155, 80, 0.4);
    transform: translateY(-1px);
}