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

        /* ── Reset & Variables ── */
        *, *::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;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Isidora', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
            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); }

        /* ── Network Canvas ── */
        #network-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* ── Grid Background ── */
        .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;
            top: 0;
            left: 0;
            border-radius: 50%;
            filter: blur(150px);
            pointer-events: none;
            z-index: 0;
            will-change: transform;
        }
        .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% { transform: translate(-5vw, -10vh); }
            25% { transform: translate(60vw, 20vh); }
            50% { transform: translate(30vw, 50vh); }
            75% { transform: translate(70vw, 10vh); }
        }
        @keyframes orbFloat2 {
            0%, 100% { transform: translate(70vw, 60vh); }
            25% { transform: translate(10vw, 30vh); }
            50% { transform: translate(50vw, -5vh); }
            75% { transform: translate(20vw, 40vh); }
        }

        /* ── Grain Overlay ── */
        .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;
        }

        /* ── 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;
        }

        /* ── Content Layer ── */
        .content-layer {
            position: relative;
            z-index: 2;
        }

        /* ── 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);
        }

        /* ── Hero ── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-content {
            max-width: 950px;
            text-align: center;
        }

        .hero-content > * {
            opacity: 0;
            transform: translateY(40px);
            animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .hero-content > *:nth-child(1) { animation-delay: 0.2s; }
        .hero-content > *:nth-child(2) { animation-delay: 0.35s; }
        .hero-content > *:nth-child(3) { animation-delay: 0.45s; }
        .hero-content > *:nth-child(4) { animation-delay: 0.55s; }
        .hero-content > *:nth-child(5) { animation-delay: 0.65s; }
        .hero-content > *:nth-child(6) { animation-delay: 0.8s; }

        @keyframes heroFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: clamp(2.75rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.08;
            margin-bottom: 1.75rem;
            letter-spacing: -2px;
        }

        .highlight {
            color: var(--green);
            position: relative;
            text-shadow: 0 0 40px rgba(0, 168, 117, 0.2);
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1.1rem 2.75rem;
            background: var(--green);
            border: none;
            border-radius: 50px;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Isidora', sans-serif;
        }

        .btn-primary:hover {
            background: var(--green-light);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px var(--green-glow), 0 0 0 1px rgba(0, 201, 141, 0.2);
        }

        .btn-secondary {
            padding: 1.1rem 2.75rem;
            background: rgba(37, 66, 60, 0.05);
            border: 1px solid rgba(37, 66, 60, 0.2);
            border-radius: 50px;
            color: var(--dark-green);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.35s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
            font-family: 'Isidora', sans-serif;
        }

        .btn-secondary:hover {
            border-color: var(--green);
            background: rgba(0, 168, 117, 0.08);
            color: var(--green-text);
            box-shadow: 0 0 30px rgba(0, 168, 117, 0.1);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 5rem;
            margin-top: 5rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(0, 168, 117, 0.15);
        }

        .stat { text-align: center; }

        .stat-value {
            font-size: 3rem;
            font-weight: 700;
            color: var(--green);
            text-shadow: 0 0 30px rgba(0, 168, 117, 0.15);
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
            font-weight: 500;
        }

        /* ── Product Preview ── */
        .product-preview {
            padding: 0 2rem 4rem;
            margin-top: -3rem;
            position: relative;
        }

        .product-preview-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .product-preview img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            border: 1px solid rgba(0, 168, 117, 0.15);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 168, 117, 0.1);
        }

        /* ── Social Proof ── */
        .social-proof {
            padding: 4rem 2rem;
            position: relative;
        }

        .social-proof-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .stats-bar .proof-stat {
            text-align: center;
        }

        .stats-bar .proof-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--green);
            text-shadow: 0 0 30px rgba(0, 168, 117, 0.15);
        }

        .stats-bar .proof-stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .stats-bar { gap: 2rem; flex-direction: column; align-items: center; }
        }

        /* ── Sections ── */
        .section-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 3rem;
        }

        .section-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--green-text);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 4.5vw, 3.25rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--black);
            letter-spacing: -1px;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.15rem;
            line-height: 1.7;
        }

        /* ── How It Works ── */
        .how-it-works {
            padding: 4rem 2rem;
            position: relative;
        }

        .steps-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .step-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 168, 117, 0.12);
            border-radius: 24px;
            padding: 2.75rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .step-card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-8px);
            border-color: rgba(0, 168, 117, 0.3);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 168, 117, 0.15);
        }

        .step-number {
            font-size: 4rem;
            font-weight: 700;
            color: rgba(0, 168, 117, 0.15);
            line-height: 1;
            margin-bottom: 1.25rem;
        }

        .step-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(0, 168, 117, 0.12) 0%, rgba(210, 238, 230, 0.5) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.75rem;
            border: 1px solid rgba(0, 168, 117, 0.15);
            box-shadow: 0 0 20px rgba(0, 168, 117, 0.06);
        }

        .step-icon svg {
            color: var(--green);
        }

        .step-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.85rem;
            color: var(--black);
        }

        .step-card p {
            color: var(--text-secondary);
            line-height: 1.75;
            font-size: 0.98rem;
        }

        @media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── Features ── */
        .features {
            padding: 4rem 2rem;
            position: relative;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 168, 117, 0.12);
            border-radius: 24px;
            padding: 2.75rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 50%, var(--bright) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 168, 117, 0.04) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .feature-card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-8px);
            border-color: rgba(0, 168, 117, 0.3);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 168, 117, 0.15), 0 0 80px rgba(0, 168, 117, 0.04);
        }

        .feature-card:hover::before { opacity: 1; }
        .feature-card:hover::after { opacity: 1; }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(0, 168, 117, 0.12) 0%, rgba(210, 238, 230, 0.5) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.75rem;
            border: 1px solid rgba(0, 168, 117, 0.15);
            box-shadow: 0 0 20px rgba(0, 168, 117, 0.06);
        }

        .feature-icon svg {
            color: var(--green);
        }

        .feature-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.85rem;
            color: var(--black);
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.75;
            font-size: 0.98rem;
        }

        /* ── Pricing ── */
        .pricing {
            padding: 4rem 2rem;
        }

        .pricing-slider-wrap {
            max-width: 640px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 168, 117, 0.15);
            border-radius: 28px;
            padding: 3rem 2.5rem 2.5rem;
            text-align: center;
            position: relative;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 168, 117, 0.1);
        }

        /* Slider question */
        .pricing-question {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        /* Range slider track & labels */
        .slider-container {
            position: relative;
            padding-bottom: 2.5rem;
            margin-bottom: 2rem;
        }

        .pricing-range {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            background: rgba(0, 168, 117, 0.15);
            border-radius: 3px;
            outline: none;
            cursor: pointer;
        }

        .pricing-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 28px;
            height: 28px;
            background: var(--green);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 12px var(--green-glow), 0 0 0 4px rgba(0, 168, 117, 0.12);
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }

        .pricing-range::-webkit-slider-thumb:hover {
            transform: scale(1.15);
            box-shadow: 0 4px 20px var(--green-glow), 0 0 0 6px rgba(0, 168, 117, 0.15);
        }

        .pricing-range::-moz-range-thumb {
            width: 28px;
            height: 28px;
            background: var(--green);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 12px var(--green-glow), 0 0 0 4px rgba(0, 168, 117, 0.12);
        }

        .pricing-range::-moz-range-track {
            height: 6px;
            background: rgba(0, 168, 117, 0.15);
            border-radius: 3px;
            border: none;
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 0.75rem;
        }

        .slider-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.3s ease, font-weight 0.3s ease;
            text-align: center;
            flex: 1;
        }

        .slider-label:first-child { text-align: left; }
        .slider-label:last-child { text-align: right; }

        .slider-label.active {
            color: var(--green-text);
            font-weight: 700;
        }

        /* Price display */
        .pricing-display {
            margin-bottom: 2rem;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .pricing-plan-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 4rem;
            font-weight: 700;
            color: var(--black);
            line-height: 1.1;
            transition: opacity 0.3s ease;
        }

        .pricing-price span {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .pricing-volume {
            font-size: 1.05rem;
            color: var(--green-text);
            font-weight: 700;
            margin-top: 0.5rem;
        }

        .pricing-custom-heading {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .pricing-custom-sub {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing divider */
        .pricing-divider {
            height: 1px;
            background: rgba(0, 168, 117, 0.12);
            margin-bottom: 2rem;
        }

        /* Features list */
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.85rem;
            border-bottom: 1px solid rgba(0, 168, 117, 0.08);
            font-size: 0.95rem;
        }

        .pricing-features li:last-child { border-bottom: none; }

        .pricing-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        /* CTA button */
        .pricing-btn {
            display: inline-block;
            width: 100%;
            padding: 1.1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.35s ease;
            font-family: 'Isidora', sans-serif;
            text-align: center;
            text-decoration: none;
            background: var(--green);
            border: none;
            color: #FFFFFF;
        }

        .pricing-btn:hover {
            background: var(--green-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px var(--green-glow);
        }

        .pricing-from {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .pricing-note {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 2.5rem;
        }

        @media (max-width: 768px) {
            .pricing-card { padding: 2rem 1.5rem; }
            .pricing-price { font-size: 3rem; }
            .pricing-custom-heading { font-size: 1.4rem; }
        }

        /* ── FAQ ── */
        .faq { padding: 4rem 2rem; }

        .faq-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .faq-column {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(0, 168, 117, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.35s ease;
            backdrop-filter: blur(10px);
        }

        .faq-item:hover { border-color: rgba(0, 168, 117, 0.25); }

        .faq-item.active {
            border-color: var(--green);
            box-shadow: 0 0 30px rgba(0, 168, 117, 0.06);
        }

        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            gap: 1rem;
        }

        .faq-question span {
            font-family: 'Isidora', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--black);
            line-height: 1.4;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            stroke: var(--green);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-icon { transform: rotate(180deg); }

        .faq-answer {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
            padding-bottom: 0;
        }

        .faq-answer p {
            padding: 0 1.5rem 0;
            margin: 0;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .faq-answer a {
            color: var(--green);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .faq-answer a:hover {
            opacity: 0.8;
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
            opacity: 1;
            padding-bottom: 1.25rem;
        }

        /* ── CTA ── */
        .cta {
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-box {
            max-width: 900px;
            margin: 0 auto;
            background: var(--dark-green);
            border: 1px solid rgba(0, 168, 117, 0.3);
            border-radius: 36px;
            padding: 5.5rem 3.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(37, 66, 60, 0.15);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 168, 117, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 168, 117, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta h2 {
            font-size: clamp(2rem, 4.5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            color: #FFFFFF;
        }

        .cta p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.75rem;
            position: relative;
            color: var(--bright);
        }

        .cta .btn-primary {
            background: var(--green);
            color: #FFFFFF;
        }

        .cta .btn-primary:hover {
            background: var(--green-light);
            box-shadow: 0 16px 48px rgba(0, 168, 117, 0.4);
        }

        /* ── 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;
        }

        /* ── Back to Top ── */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--green);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.35s ease;
            z-index: 999;
            box-shadow: 0 4px 24px var(--green-glow);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--green-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px var(--green-glow);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            stroke: #FFFFFF;
            stroke-width: 2.5;
            fill: none;
        }

        /* ── Reduced Motion ── */
        @media (prefers-reduced-motion: reduce) {
            .orb, .hero-content > *, .reveal { animation: none; transition: none; opacity: 1; transform: none; }
            #network-canvas { display: none; }
            html { scroll-behavior: auto; }
        }

        /* ── Scroll Reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .faq-grid { grid-template-columns: 1fr; }
        }

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

        /* ── Why Hodafy grid ── */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            text-align: left;
        }

        .why-grid h3 {
            color: var(--green);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .why-grid p {
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .why-grid { grid-template-columns: 1fr; }
        }

        /* ── Brzmi znajomo ── */
        .pain-points {
            padding: 4rem 2rem;
            text-align: center;
        }

        .pain-points-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .pain-points-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }

        .pain-points-list blockquote {
            font-size: 1.25rem;
            color: var(--dark-green);
            font-style: italic;
            line-height: 1.7;
            border-left: 3px solid var(--green);
            padding-left: 1.5rem;
            text-align: left;
            margin: 0;
        }

        .pain-points-note {
            margin-top: 2rem;
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* ── Dlaczego Hodafy ── */
        .why-hodafy {
            padding: 4rem 2rem;
            text-align: center;
        }

        .why-hodafy-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        @media (max-width: 1100px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ── Hamburger ── */
        .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);
        }

        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-cta {
                display: inline-block;
                padding: 0.55rem 1rem;
                font-size: 0.8rem;
            }

            .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);
            }


            .hero-stats {
                flex-direction: column;
                gap: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .cta-box { padding: 3.5rem 2rem; }

            .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;
            }

            .orb, #network-canvas {
                display: none;
            }
        }

/* 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; }

/* Index-specific inline styles */
.hero p.trial-note { margin-top: 1rem; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }
.hero-quote { margin-top: 1.5rem; padding: 0; border: none; font-size: 0.95rem; color: var(--text-secondary); font-style: italic; max-width: 480px; margin-left: auto; margin-right: auto; text-align: center; }
.hero-quote cite { display: block; margin-top: 0.4rem; font-style: normal; font-size: 0.8rem; color: var(--text-muted); }
.stats-title { margin-bottom: 2rem; text-align: center; }
.cta-pricing-note { margin-top: 1rem; font-size: 0.9rem; color: rgba(210,238,230,0.7); }
.cta-pricing-link { color: var(--green); text-decoration: underline; }

/* Entity definition (GEO) */
.entity-definition {
    max-width: 700px;
    margin: 6rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 168, 117, 0.15);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing calculator link */
.pricing-calculator-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.pricing-calculator-link a {
    color: var(--green);
    text-decoration: underline;
}
.pricing-calculator-link a:hover {
    opacity: 0.8;
}

/* Dla kogo section */
.for-who {
    padding: 5rem 2rem;
    text-align: center;
}
.for-who-inner {
    max-width: 700px;
    margin: 0 auto;
}
.for-who-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.for-who-list p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.check-mark {
    color: var(--green);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}