@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- GLOBAL RESET & VARIABLES --- */
:root {
    --primary: #9ac43a;
    /* ChargerGoGo Lime Green */
    --primary-dark: #7da02e;
    --secondary-canada: #FF0000;
    /* Canadian Red */
    --text-dark: #1D1D1F;
    --text-gray: #6E6E73;
    --bg-light: #F5F5F7;
    --bg-white: #FFFFFF;
    --border-radius: 12px;
    --max-width: 1200px;
    --font-main: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Accessibility utility: visually hidden but readable by screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content link for keyboard navigation */
.skip-link {
    position: absolute;
    top: 0;
    left: 12px;
    background: var(--primary);
    color: var(--text-dark);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    z-index: 10001;
    font-weight: 600;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

/* --- UTILITIES --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-decoration-none {
    text-decoration: none;
}

/* Common Inline Style Replacements */
.logo-img {
    height: 60px !important;
    width: auto !important;
    max-width: min(560px, 34vw);
    margin: 0 10px;
    border-radius: 0;
}

.maple-icon {
    margin: 0;
    font-size: 1.5rem;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-heading .highlight {
    color: var(--primary);
}

.section-heading-alt {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.text-muted {
    color: #666;
    line-height: 1.6;
}

.text-muted-sm {
    color: #555;
    line-height: 1.6;
}

.flex-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.flex-col-equal {
    flex: 1;
    min-width: 300px;
}

.flex-col-small {
    flex: 1;
    min-width: 280px;
}

.img-full-shadow {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-full-shadow-large {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stats-label {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-max-w {
    max-width: 250px;
}

.section-py {
    padding: 4rem 0;
}

.text-canada {
    color: var(--secondary-canada);
}

.maple-leaf-header {
    font-size: 2.5rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    line-height: 1;
    transform: scale(1.35);
    transform-origin: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    opacity: 0.9;
}

.btn-accent {
    background-color: var(--primary);
    color: var(--text-dark); /* Changed from white for AODA WCAG AA contrast compliance */
}

.btn-accent:hover {
    background-color: var(--primary-dark);
    color: white; /* Darker background allows white text */
}

.btn-outline {
    border-color: var(--text-dark);
    background: transparent;
}

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

/* Focus styles for keyboard navigation */
.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* --- HEADER --- */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* --- HAMBURGER / MOBILE NAV --- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px 8px;
    line-height: 1;
    z-index: 1100;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
    border-color: var(--primary);
}

.mobile-nav .mobile-nav-cta {
    margin-top: 1rem;
}

.mobile-nav-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
}

/* --- STAT NUMBER (replaces h3 in stats bar for correct heading hierarchy) --- */
.stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

/* --- RESPONSIVE VIDEO WRAPPER --- */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

@media (max-width: 768px) {

    .nav-links,
    .header-actions {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-col a {
    color: #ddd;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* --- HERO SECTION (Used in Index) --- */
.hero-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #fff 50%, #f7faeb 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(135deg, #3d6b0f 0%, #7da02e 40%, #9ac43a 70%, #c4e05a 100%);
    background: linear-gradient(135deg, #3d6b0f 0%, #7da02e 40%, #9ac43a 70%, #c4e05a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- PRODUCTS PAGE SPECIFIC --- */
.product-hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #f7faeb 100%);
    padding: 5rem 0;
    text-align: center;
}

/* Bundles (Pricing Cards) */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bundle-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.bundle-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.tag {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.price-block {
    margin: 1.5rem 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-sub {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: line-through;
}

.bundle-list {
    margin: 1.5rem 0;
    text-align: left;
}

.bundle-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.bundle-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Individual Products */
.products-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-item {
    text-align: center;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-img {
    background: var(--bg-light);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-img img {
    max-height: 80%;
    width: auto;
}

.product-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* --- USER PAGE SPECIFIC --- */
.steps-row {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: left;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: #ddd;
    line-height: 1;
    margin-bottom: 1rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.app-badge {
    height: 50px;
    background: #000;
    border-radius: 8px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
    text-align: right;
}

/* --- BUSINESS PAGE SPECIFIC --- */
.stats-bar {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 2rem;
}

.stat-box p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
}

.income-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.income-table th {
    background: var(--text-dark);
    color: white;
    padding: 1rem;
    text-align: left;
}

.income-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.income-table tr:last-child td {
    border-bottom: none;
}

.income-highlight {
    color: var(--primary);
    font-weight: bold;
}

/* --- JOIN NETWORK SECTION --- */
.join-network-section {
    background: linear-gradient(180deg, #e3f5e5 0%, #ffffff 100%);
    padding: 5rem 0;
    text-align: center;
}

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

.network-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.network-card:hover {
    transform: translateY(-10px);
}

.network-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.network-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.network-content h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.network-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-green {
    background-color: #9ac43a;
    color: var(--text-dark); /* Changed from white for AODA WCAG AA contrast compliance */
    width: 100%;
    text-align: center;
    border: none;
    margin-bottom: 1rem;
}

.btn-green:hover {
    background-color: #7da02e;
    color: white; /* Darker background allows white text */
    opacity: 1;
}

.learn-more-link {
    display: block;
    text-align: center;
    color: #7f8c8d;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.learn-more-link:hover {
    color: var(--primary);
}

/* --- INDUSTRY SECTION --- */
.industry-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.industry-card img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
    flex-grow: 1;
}

.industry-card .btn-green {
    width: auto;
    padding: 10px 30px;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- EASY STEPS SECTION --- */
.steps-section-new {
    text-align: center;
    padding: 5rem 0;
}

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

.step-card-new {
    background: linear-gradient(180deg, #ffffff 0%, #e3f5e5 100%);
    border-radius: 20px;
    padding: 3rem 2rem 0;
    /* Padding bottom 0 for image to sit at bottom if needed */
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-label {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card-new h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card-new p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.phone-img-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.phone-img-container img {
    max-width: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    /* Match phone radius roughly */
    margin-bottom: 2rem;
}

.download-section {
    margin: 6rem 0;
    text-align: center;
}

.download-section .section-title {
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.store-badge img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.store-badge:hover img {
    transform: scale(1.05);
}


/* --- SUSTAINABILITY SECTION --- */
.sustainability-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--bg-white);
    margin: 4rem 0;
    overflow: hidden;
}

.sustain-content {
    flex: 1;
    /* Align left edge with the standard container (1200px max-width) + 20px padding */
    padding-left: max(2rem, calc((100% - 1200px) / 2 + 20px));
    padding-right: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-width: 300px;
    margin: 0;
    /* Remove auto margins to strictly follow padding alignment */
}

.sustain-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.sustain-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.sustain-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 500px;
}

.sustain-image-col {
    flex: 1 1 40%;
    max-width: 50%;
    min-width: 300px;
    min-height: 320px;
    align-self: stretch;
    background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.recycle-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    /* Adjusted to right based on typical layout, or left as per image? Image has it on the right of the image part usually or overlaying. */
    background: white;
    padding: 10px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recycle-badge img {
    width: 60%;
    height: auto;
}

/* --- MEDIA SECTION --- */
.media-section {
    padding: 2rem 0 5rem;
    text-align: center;
    background-color: var(--bg-white);
}

.media-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.media-logos img {
    height: 30px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}


/* --- USER PAGE REFRESH --- */
.hero-user {
    padding: 6rem 0;
    text-align: center;
}

.hero-user h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-user img {
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.hero-user .app-badges {
    margin-top: 2rem;
    justify-content: flex-start;
}

/* Override centering if needed, but centering is good */

/* Benefits Circles */
.benefits-section {
    text-align: center;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials with Stars */
.star-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card-new {
    background: white;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.testimonial-user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1.5rem auto 1rem;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Business Page Specific Sections */
.problem-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card-new {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.problem-card-new img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.problem-card-new .content {
    padding: 2rem;
}

.problem-card-new h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.problem-card-new p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .problem-grid-new {
        grid-template-columns: 1fr;
    }
}

.what-we-offer-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.offer-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
}

.offer-item {
    text-align: left;
}

.offer-item .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f7faeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offer-item img {
    width: 50px;
    height: 50px;
}

.offer-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.offer-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.offer-large-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .what-we-offer-grid-section {
        grid-template-columns: 1fr;
    }

    .offer-items-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================= */

@media (max-width: 768px) {

    /* --- Typography --- */
    .section-title {
        font-size: 1.9rem;
    }

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

    .hero-user h1 {
        font-size: 2.2rem;
    }

    /* --- Sustainability section stacks vertically --- */
    .sustainability-section {
        flex-direction: column;
    }

    .sustain-content {
        padding: 3rem 1.5rem;
        min-width: 0;
        width: 100%;
    }

    .sustain-image-col {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        height: 260px;
        min-height: 0;
        align-self: auto;
    }

    /* --- Hero section buttons wrap nicely --- */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        margin-left: 0 !important;
        flex: 0 0 auto;
    }

    /* --- User page hero: stack text+badges above video --- */
    .user-hero-flex {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* --- Distribution partners testimonial: 1 col --- */
    .partners-testimonial-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Download badges wrap --- */
    .download-badges {
        gap: 1rem;
    }

    /* --- App badges wrap --- */
    .app-badges {
        flex-wrap: wrap;
    }

    /* --- Steps grid: single column --- */
    .steps-grid-new {
        grid-template-columns: 1fr;
    }

    /* --- Network cards: single column --- */
    .network-grid {
        grid-template-columns: 1fr;
    }

    /* --- Bundles grid: single column --- */
    .bundles-grid {
        grid-template-columns: 1fr;
    }

    /* --- Testimonial grid: single column --- */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* --- Benefits grid: single column --- */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* --- Hero section padding --- */
    .hero-section {
        padding: 4rem 0;
    }

    .steps-section-new {
        padding: 3rem 0;
    }

    /* --- Sustainability hero heading --- */
    .sustain-hero-title {
        font-size: 2.2rem !important;
    }

    /* --- Sustainability CTA section: don't let fixed height clip content --- */
    .sustain-cta-section {
        height: auto !important;
        min-height: 400px;
    }

    /* --- Products grid --- */
    .products-list-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Stats bar wraps --- */
    .stats-flex {
        gap: 1.5rem;
    }

    /* --- income table horizontal scroll --- */
    .income-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {

    /* --- Typography --- */
    .section-title {
        font-size: 1.6rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-user h1 {
        font-size: 1.8rem;
    }

    /* --- Products grid: single column at very small sizes --- */
    .products-list-grid {
        grid-template-columns: 1fr;
    }

    /* --- Download badges: stack vertically --- */
    .download-badges {
        flex-direction: column;
        align-items: center;
    }

    /* --- Container padding --- */
    .container {
        padding: 0 16px;
    }

    /* --- Section padding --- */
    .section-py {
        padding: 2.5rem 0;
    }

    /* --- bundle cards: remove scale on featured --- */
    .bundle-card.featured {
        transform: none;
    }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    border: 1px solid #eee;
    font-family: var(--font-main);
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-bottom: 0;
    width: auto;
}

/* --- UTILITY CLASSES --- */

/* Flexbox Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

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

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-center-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gap Utilities */
.gap-1rem {
    gap: 1rem;
}

.gap-1-5rem {
    gap: 1.5rem;
}

.gap-2rem {
    gap: 2rem;
}

.gap-3rem {
    gap: 3rem;
}

.gap-4rem {
    gap: 4rem;
}

.gap-10px {
    gap: 10px;
}

/* Flex Item Utilities */
.flex-1 {
    flex: 1;
}

.flex-1-2 {
    flex: 1.2;
}

.flex-item {
    flex: 1;
    min-width: 300px;
}

/* Home: Proprietary technology cards */
.prop-tech-grid {
    align-items: start;
}

.prop-tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.prop-tech-card > div:first-child {
    width: 100%;
    height: 230px;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 2rem !important;
}

.prop-tech-card img {
    width: 100% !important;
    max-width: 250px;
    max-height: 230px;
    object-fit: contain;
}

.prop-tech-card h3 {
    margin: 0 0 1rem;
    min-height: 3.6rem;
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.prop-tech-card p {
    margin: 0;
    min-height: 9.6rem;
    max-width: 280px;
}

.prop-tech-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 270px;
    width: 270px;
    min-height: 52px;
    margin-bottom: 0;
    padding: 12px 28px;
    white-space: nowrap;
}

.prop-tech-actions .btn-green {
    width: 270px;
}

/* Business page: keep CTA buttons perfectly aligned in one row */
.business-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-bottom: 0;
    line-height: 1;
}

.business-cta-buttons .btn-green,
.business-cta-buttons .btn-primary {
    width: auto;
}

@media (max-width: 991px) {
    .prop-tech-card > div:first-child {
        height: auto;
    }

    .prop-tech-card img {
        max-height: none;
    }

    .prop-tech-card h3,
    .prop-tech-card p {
        min-height: auto;
    }

    .prop-tech-card p {
        max-width: none;
    }

    .prop-tech-actions .btn {
        flex: 1 1 240px;
        width: auto;
    }
}

.flex-item-280 {
    flex: 1;
    min-width: 280px;
}

.flex-item-250 {
    flex: 1;
    min-width: 250px;
}

.max-width-item-500 {
    max-width: 500px;
}

.max-width-item-600 {
    max-width: 600px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Margin Utilities */
.margin-top-1rem {
    margin-top: 1rem;
}

.margin-top-2rem {
    margin-top: 2rem;
}

.margin-top-3rem {
    margin-top: 3rem;
}

.margin-top-4rem {
    margin-top: 4rem;
}

/* Image Optimization */
img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
    height: auto;
}

picture {
    display: block;
}

/* Responsive Image Utilities */
.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.img-hero {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-content {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Fix for circular images in benefits */
.benefit-item img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix for stats alignment on business page */
.stats-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Fix for certification image size */
.cert-img-container img {
    width: min(92%, 760px);
    max-height: none !important;
}

.margin-bottom-1rem {
    margin-bottom: 1rem;
}

.margin-bottom-2rem {
    margin-bottom: 2rem;
}

.margin-bottom-3rem {
    margin-bottom: 3rem;
}

.margin-auto {
    margin: 0 auto;
}

/* Width/Max-Width Utilities */
.max-width-500 {
    max-width: 500px;
}

.max-width-600 {
    max-width: 600px;
}

.max-width-800 {
    max-width: 800px;
}

.max-width-900 {
    max-width: 900px;
}

.max-width-1000 {
    max-width: 1000px;
}

.max-height-400 {
    max-height: 400px;
}

.width-100pct {
    width: 100%;
}

.height-auto {
    height: auto;
}

/* Display Utilities */
.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

/* Padding/Spacing */
.padding-2rem {
    padding: 2rem;
}

.padding-top-2rem {
    padding-top: 2rem;
}

/* Position & Effects */
.text-center-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.container-flex-reverse {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        padding: 20px 15px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        text-align: center;
    }
}