/* Self-hosted fonts — Inter */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Self-hosted fonts — DM Sans */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/dmsans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/dmsans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

        :root {
            --brand-grey: #545454;
            --brand-green: #007A5B;
            --dark-grey: #0d2b22;
            --light-grey: #f5f5f5;
            --off-white: #F3F1EB;
            --dark-text: #1a1a1a;
            --mid-gray: #666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark-text);
            background: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo img {
            height: 75px;
            width: auto;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-grey);
            letter-spacing: -0.5px;
        }
        
        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--dark-text);
            transition: all 0.3s;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            overflow-y: auto;
            background: white;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 1000;
            padding: 6rem 2rem 2rem;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav a {
            display: block;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 1rem 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.2s;
        }
        
        .mobile-nav a:hover {
            color: var(--brand-grey);
        }
        
        .mobile-nav .cta-button {
            display: inline-block;
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .mobile-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        nav a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        
        nav a:hover {
            color: var(--brand-grey);
        }
        
        .cta-button {
            background: var(--brand-grey);
            color: white;
            padding: 0.75rem 1.75rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .cta-button:hover {
            background: var(--dark-grey);
            transform: translateY(-1px);
        }
        
        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 85vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 3rem;
            gap: 4rem;
        }
        
        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(0, 122, 91, 0.1);
            border: 1px solid rgba(0, 122, 91, 0.25);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-green);
            margin-bottom: 1.5rem;
        }

        .heritage-mark {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 1.75rem;
        }

        .heritage-rule {
            flex: 0 0 2rem;
            height: 1px;
            background: currentColor;
            opacity: 0.3;
        }

        .heritage-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--mid-gray);
            white-space: nowrap;
        }
        
        h1 {
            font-family: 'Inter', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .hero-subtitle {
            font-size: 1.35rem;
            line-height: 1.7;
            color: var(--mid-gray);
            margin-bottom: 2.5rem;
            font-weight: 400;
        }
        
        .hero-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        
        .primary-action {
            background: var(--brand-grey);
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .primary-action:hover {
            background: var(--dark-grey);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(84, 84, 84, 0.3);
        }
        
        .secondary-action {
            color: var(--brand-grey);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.2s;
        }
        
        .secondary-action:hover {
            gap: 0.75rem;
        }
        
		.hero-image {
			position: relative;
			width: 100%;
			max-width: 600px;
			height: 600px;
			align-self: center;
			margin-top: 3rem;
			animation: fadeIn 1s ease-out 0.3s both;
		}

		.hero-image img {
			width: 100%;
			object-fit: cover;
			object-position: center;
			border-radius: 8px;

		}

        /* Stats Section */
        .stats-section {
            background: var(--brand-grey);
            color: white;
            padding: 5rem 3rem;
            margin: 6rem 0;
        }
        
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            font-family: 'Inter', sans-serif;
            letter-spacing: -2px;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 400;
        }
        
        /* Product Categories Section */
        .categories-section {
            max-width: 1400px;
            margin: 8rem auto;
            padding: 0 3rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .section-label {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--brand-grey);
            margin-bottom: 1rem;
        }
        
        h2 {
            font-family: 'Inter', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -1.5px;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .section-description {
            font-size: 1.25rem;
            color: var(--mid-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .category-card {
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--brand-green);
        }
        
        .category-image {
            height: 400px;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .category-card:hover .category-image img {
            transform: scale(1.05);
        }
        
        .category-content {
            padding: 2rem;
        }
        
        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark-text);
        }
        
        .category-description {
            color: var(--mid-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .category-link {
            color: var(--brand-grey);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.2s;
        }
        
        .category-link:hover {
            gap: 0.75rem;
        }
        
        /* Featured Solution */
        .featured-solution {
            background: linear-gradient(135deg, var(--brand-green) 0%, var(--dark-grey) 100%);
            color: white;
            padding: 8rem 3rem;
            margin: 8rem 0;
        }
        
        .featured-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        
        .featured-text h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .featured-description {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }
        
        .feature-list li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .feature-list li:before {
            content: "✓";
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .featured-action {
            background: white;
            color: var(--brand-grey);
            padding: 1.1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .featured-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--brand-green);
        }
        
        .featured-visual {
            position: relative;
            height: 500px;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
        }
        
        /* Trust Section */
        .trust-section {
            max-width: 1400px;
            margin: 8rem auto;
            padding: 0 3rem;
            text-align: center;
        }
        
        .trust-section h2 {
            margin-bottom: 1rem;
        }
        
        .trust-description {
            font-size: 1.25rem;
            color: var(--mid-gray);
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .trust-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }
        
        .trust-metric {
            padding: 2rem;
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
        }
        
        .trust-metric-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-green);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .trust-metric-label {
            color: var(--mid-gray);
            font-size: 0.95rem;
        }
        
        /* Footer */
        footer {
            background: var(--dark-grey);
            color: white;
            padding: 5rem 3rem 3rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        
        .footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .footer-column h3 {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
            opacity: 0.6;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            h1 {
                font-size: 3.5rem;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-content {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .trust-metrics {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                padding: 1rem 1.5rem;
            }

            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-nav,
            .mobile-overlay {
                display: block;
            }
            
            .hero {
                padding: 0 1.5rem;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .trust-metrics {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
		
		/* Navigation Base Styles */
.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
}

.main-nav > li > a:hover {
    color: var(--brand-grey);
}

/* Dropdown Styles */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 0.75rem 0;
    list-style: none;
    margin: 0;
    z-index: 1000;
    border: 1px solid #e5e5e5;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown a:hover {
    background: var(--light-grey);
    color: var(--brand-grey);
    padding-left: 1.75rem;
}

.dropdown-header {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-grey);
    padding: 1rem 1.5rem 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-header:first-child {
    margin-top: 0;
}

.dropdown-header a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.dropdown-header a:hover {
    color: var(--brand-green);
}

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.page-header-section {
    max-width: 1400px;
    margin: 14rem auto 8rem;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .page-header-section {
        margin: 8rem auto 4rem;
    }
}

/* Mobile - hide dropdowns, use hamburger menu instead */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

#myCookieConsent {
    z-index: 999;
    min-height: 100px;
    font-family: OpenSans, arial, "sans-serif";
    padding: 10px 20px;
    background: rgba(0,0,0,0.8);
    overflow: hidden;
    position: fixed;
    color: #FFF;
    top: 120px;
    right: 0px;
    display: none;
    left: 0;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
}
#myCookieConsent div {
    padding: 5px 0 0;
}
#myCookieConsent a {
    color: #4e8abb;
    display: inline-block;
    padding: 0 0px;
}
#myCookieConsent a:hover {
	color: #116cb5;
}
#myCookieConsent a#cookieButton {
    display: inline-block;
    color: #FFF;
    font-size: 1.1em;
	background: #116cb5;
    text-decoration: none;
    cursor: pointer;
    padding: 2px 20px;
    border-radius: 5px;
}
#myCookieConsent a#cookieButton:hover {
    background: #252f36;
	color: #FFF;
}

/* Mobile Nav Dropdown Styles */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    transition: color 0.2s;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.mobile-dropdown.active .arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
    background: var(--light-grey);
    margin: 0;
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-submenu a {
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
}

.mobile-submenu-header {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-grey);
    padding: 1rem 1rem 0.5rem;
    margin-top: 0.5rem;
}

.mobile-submenu-header:first-child {
    margin-top: 0;
}

.mobile-submenu-header a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.mobile-submenu-header a:hover {
    color: var(--brand-green);
}
/* ── Mobile nav override ── must remain last ── */
@media (max-width: 768px) {
    header nav { display: none !important; }
    .hamburger { display: flex !important; }
}

/* ── Responsive inline grids ── override hardcoded inline grid-template-columns ── */
@media (max-width: 768px) {
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns: 1fr 1fr 1fr 1fr"],
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
}
