@font-face {
            font-family: 'Isidora';
            src: url('../Isidora-Regular.woff2') format('woff2'),
                 url('../Isidora-Regular.ttf') format('truetype');
            font-weight: 400;
        }
        @font-face {
            font-family: 'Isidora';
            src: url('../Isidora-SemiBold.woff2') format('woff2'),
                 url('../Isidora-SemiBold.ttf') format('truetype');
            font-weight: 600;
        }
        @font-face {
            font-family: 'Isidora';
            src: url('../Isidora-Bold.woff2') format('woff2'),
                 url('../Isidora-Bold.ttf') format('truetype');
            font-weight: 700;
        }

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

        :root {
            --green: #00A875;
            --green-light: #00C98D;
            --dark-green: #25423C;
            --black: #111111;
            --bright: #D2EEE6;
            --white: #FFFFFF;
            --green-glow: rgba(0, 168, 117, 0.25);
            --bg-deep: #FFFFFF;
            --bg-card: rgba(210, 238, 230, 0.3);
            --bg-card-hover: rgba(210, 238, 230, 0.5);
            --text-primary: #111111;
            --text-secondary: #3d5e56;
            --text-muted: #456b63;
            --green-text: #007A55;
        }

        :focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 3px;
        }

        body {
            font-family: 'Isidora', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* ── Custom Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f5faf8; }
        ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--green-light); }

        .grid-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(0, 168, 117, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 168, 117, 0.06) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* ── Animated Orbs ── */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(150px);
            pointer-events: none;
            z-index: 0;
        }
        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 168, 117, 0.1), transparent 70%);
            animation: orbFloat1 20s ease-in-out infinite;
        }
        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(210, 238, 230, 0.4), transparent 70%);
            animation: orbFloat2 25s ease-in-out infinite;
        }
        @keyframes orbFloat1 {
            0%, 100% { top: -10%; left: -5%; }
            25% { top: 20%; left: 60%; }
            50% { top: 50%; left: 30%; }
            75% { top: 10%; left: 70%; }
        }
        @keyframes orbFloat2 {
            0%, 100% { top: 60%; left: 70%; }
            25% { top: 30%; left: 10%; }
            50% { top: -5%; left: 50%; }
            75% { top: 40%; left: 20%; }
        }

        .grain {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.018;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px;
        }

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

        /* ── Skip Link ── */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            background: var(--green);
            color: #FFFFFF;
            padding: 0.75rem 1.5rem;
            font-weight: 700;
            font-size: 0.95rem;
            z-index: 10001;
            border-radius: 0 0 8px 0;
        }

        .skip-link:focus {
            left: 0;
        }

        /* ── Navigation ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(0, 168, 117, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            padding: 0.75rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-bottom-color: rgba(0, 168, 117, 0.2);
        }

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

        .logo img { height: 36px; width: auto; }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green);
            box-shadow: 0 0 8px var(--green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active { color: var(--green-text); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

        .nav-cta {
            padding: 0.75rem 1.75rem;
            background: var(--green);
            border: none;
            border-radius: 50px;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .nav-cta:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--green-glow);
        }

        .mobile-nav-only { display: none; }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-secondary);
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--green);
        }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background: var(--green);
        }

        /* ── Page Content ── */
        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        .content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .content .subtitle {
            color: var(--text-muted);
            margin-bottom: 3rem;
            font-size: 1rem;
        }

        .content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--green);
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 168, 117, 0.2);
        }

        .content h2:first-of-type {
            border-top: none;
            padding-top: 0;
        }

        .content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark-green);
            margin: 1.5rem 0 0.75rem;
        }

        .content p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .content ul, .content ol {
            color: var(--text-secondary);
            margin: 1rem 0 1rem 1.5rem;
        }

        .content li {
            margin-bottom: 0.5rem;
        }

        .content a {
            color: var(--green-text);
            text-decoration: none;
        }

        .content a:hover {
            text-decoration: underline;
        }

        .company-info {
            background: var(--bg-card);
            border: 1px solid rgba(0, 168, 117, 0.2);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .company-info p { margin-bottom: 0.5rem; }
        .company-info strong { color: var(--text-primary); }

        .definition-list {
            margin: 1rem 0;
        }

        .definition-item {
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 2px solid rgba(0, 168, 117, 0.3);
        }

        .definition-item strong {
            color: var(--dark-green);
        }

        /* ── Footer ── */
        footer {
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(0, 168, 117, 0.12);
        }

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

        .footer-logo img { height: 32px; width: auto; }

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

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-links a:hover { color: var(--green-text); }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ── Reduced Motion ── */
        @media (prefers-reduced-motion: reduce) {
            .orb { animation: none; }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-cta { display: none; }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: #FFFFFF;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.5rem;
                z-index: 9999;
                padding: 2rem;
                display: none;
            }

            .nav-links.open { display: flex; }
            .mobile-nav-only { display: block; list-style: none; }
            .mobile-nav-only .nav-cta { display: inline-block; margin-top: 0.5rem; }

            .hamburger { position: relative; z-index: 10000; }

            .nav-links a {
                font-size: 1.5rem;
                color: var(--black);
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-links a {
                display: inline-block;
                padding: 0.75rem 0.5rem;
                min-height: 44px;
            }
        }

/* Footer inline styles */
.footer-copy-address { margin-top: 0.25rem; }
.footer-copy-address a { color: var(--green-text); }
.footer-copy-copyright { margin-top: 0.75rem; }