:root {
    --color-primary: #15BA5E;
    --color-bg: #FDF6EE;
    --color-dark: #121212;
    --color-text: #1a1a1a;
    --color-text-light: #FDF6EE;
    --color-gray: #666;
    --color-card-bg: #ffffff;

    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Typography Constants */
    --font-size-base: 16px;
    --font-size-h2: 2.5rem;
    --font-size-h3: 1.75rem;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    /* STRICT 16px BASE */
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Enforce Section Heading Sizes */
h2,
.section-title {
    font-size: var(--font-size-h2);
    margin-bottom: 2rem;
    /* Standardized spacing */
}

/* Enforce Subheadline Sizes */
h3 {
    font-size: var(--font-size-h3);
}

/* Enforce Body Copy Sizes */
p {
    font-size: 1rem;
    /* 16px */
    line-height: 1.6;
    color: var(--color-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: #129d4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 186, 94, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-text);
    color: var(--color-text);
}

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

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

/* Top Navigation Bar */
.top-bar {
    background-color: #000000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.btn-nav-cta {
    background-color: var(--color-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
}

.btn-nav-cta:hover {
    background-color: #129d4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 186, 94, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Removed transform: scaleX(-1) to flip it back based on user request */
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Sharpening effect using contrast and filter trick */
    filter: contrast(1.1) saturate(1.1);
}

/* Fade to black effect - Faded on LEFT side */
.hero-overlay {
    /* Removed as requested: display: none or transparent */
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
    /* Left justified */
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned items */
}

.hero-subtitle {
    color: var(--color-primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem !important;
}

.hero h1 {
    font-size: 80px !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-weight: 700 !important;
    line-height: 96px !important;
    margin-bottom: 0.5rem !important;
    color: white !important;
    letter-spacing: -2px;
}

.hero-description {
    max-width: 600px;
    font-size: 1.25rem;
    color: white !important;
    margin-bottom: 2.5rem;
}

/* Redesigned Features Section - Clean Modern */
.features-clean {
    padding: 6rem 0;
    background-color: white;
    /* Soft transition from hero */
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
}

.feature-text {
    flex: 1;
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(21, 186, 94, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--color-primary);
    width: 30px;
    height: 30px;
}

.feature-text h3 {
    font-size: var(--font-size-h3);
    /* Unified 1.75rem */
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
}



.cloud-illustration-placeholder {
    opacity: 0.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Removed card styling (background, border, shadow) as requested */
.feature-card-clean {
    padding: 1rem;
    /* Reduced padding */
    transition: all 0.3s ease;
}

/* Removed hover effect since boxes are gone */
/* .feature-card-clean:hover { ... } */

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 1.5rem;
}

.feature-card-clean h3 {
    font-size: var(--font-size-h3);
    /* Unified 1.75rem */
    color: var(--color-dark);
    margin-top: 0.5rem;
}

.feature-card-clean p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.clean-list {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.clean-list li {
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.clean-list li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
    font-size: 0.8rem;
    background: rgba(21, 186, 94, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box-clean {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
    background: #f8fcf9;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(21, 186, 94, 0.2);
    width: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

/* New Split Grid Layout for High Visibility Section */
.split-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.split-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.split-icon {
    width: 50px;
    /* Slightly larger for images */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.split-title {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

/* Mobile responsive for split grid */
@media (max-width: 600px) {
    .split-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Section */
.products {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: var(--font-size-h2);
    /* Unified H2 */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    /* Fresh upscale look: subtle border, softer shadow */
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    padding: 1.5rem 2rem 0.5rem 2rem;
    background-color: white;
    /* Changed from grey #f5f5f5 */
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f9f9f9;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-info {
    padding: 0.75rem 2rem 2rem 2rem;
}

.product-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: var(--font-size-h3);
    /* Unified 1.75rem */
}

.product-desc {
    font-size: 1rem;
    /* Unified 16px */
    color: var(--color-gray);
    margin-bottom: 1rem;
    min-height: 3rem;
}

.product-dim {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.dim-value {
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    display: inline-block;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background-color: white;
    color: var(--color-dark);
    position: relative;
    z-index: 2;
}

.why-choose-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;

    /* Cohesive Box Look */
    background-color: #f8f9fa;
    /* crisp light grey */
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.why-choose-text {
    flex: 1;
}

.why-choose-image {
    flex: 1;
    /* Removed border-radius/shadow to let the image float freely */
    display: flex;
    justify-content: center;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure it doesn't stretch */
}

.why-choose h2 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: var(--font-size-h2);
    /* Unified H2 */
}

.why-choose p {
    font-size: 1.25rem;
    /* Intentionally intro text */
    color: var(--color-gray);
    margin-bottom: 2.5rem;
}

.why-choose .btn-secondary {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.why-choose .btn-secondary:hover {
    background-color: var(--color-dark);
    color: white;
}

/* Feature Green Box (Replacing Muffin) */
.feature-green-box {
    flex: 1;
    background-color: var(--color-primary);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(21, 186, 94, 0.2);
    min-height: 320px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.green-box-content {
    position: relative;
    z-index: 2;
}

.feature-bowl-img {
    position: absolute;
    bottom: -120px;
    right: -90px;
    width: 420px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.feature-green-box h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-green-box p {
    color: white !important;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.feature-green-box .btn-secondary {
    background-color: white;
    color: var(--color-primary);
    border: none;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature-green-box .btn-secondary:hover {
    background-color: #f0f0f0;
    color: var(--color-dark);
}

/* Divider for Uniformity */
.card-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .feature-green-box {
        text-align: center;
        padding-bottom: 220px;
        overflow: visible;
        z-index: 1;
    }

    .feature-bowl-img {
        position: absolute;
        width: 300px;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        z-index: 999;
    }
}

/* Footer styles removed to use standard global footer */

/* Responsiveness */
@media (max-width: 768px) {

    /* Hide CTA text on mobile, keep button */
    .nav-cta-text {
        display: none;
    }

    /* Mobile hero - separate text and image sections */
    .hero {
        height: auto;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-bg {
        position: relative;
        height: 50vh;
        min-height: 300px;
        order: 2;
    }

    .hero-bg img {
        filter: contrast(1.1) saturate(1.1);
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        background-color: #000000;
        padding: 3rem 0;
        order: 1;
        z-index: 2;
    }

    .hero-content .container {
        align-items: center;
        text-align: center;
    }

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

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

    .feature-row {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-visual {
        width: 100%;
        height: 200px;
    }

    /* Left-justify all mobile text except hero */
    .feature-text,
    .feature-card-clean {
        text-align: left;
    }

    .feature-card-clean h3,
    .feature-card-clean p {
        text-align: left;
    }

    .split-feature-grid {
        text-align: center;
    }
}

/* Fix for dropdown menu z-index - ensure it appears above hero text and other elements */
.u-nav-container .u-nav-popup {
    z-index: 9999 !important;
}