   :root {
            --night: #0d1117;
            --deep: #161b22;
            --slate: #1c2333;
            --green: #a9d039;
            --green-dim: rgba(0,196,122,0.10);
            --green-border: rgba(0,196,122,0.25);
            --white: #ffffff;
            --off-white: #f6f8fa;
            --muted: #8b949e;
            --border: rgba(255,255,255,0.07);
            --border-light: #e5e7eb;
            --card-bg: #ffffff;
            --text: #0d1117;
            --text-mid: #4b5563;
        }

       
        /* ── LAYOUT ── */
        .containerisa {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: 0.82fr 1.18fr;
            gap: 56px;
            align-items: start;
        }

        /* ── LEFT HERO ── */
        .hero {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: sticky;
            top: 40px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Sora', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 20px;
        }

        .hero-eyebrow::before {
            content: '';
            width: 24px; height: 2px;
            background: var(--green);
            border-radius: 2px;
        }

        .hero h1 {
            font-family: 'Sora', sans-serif;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -1px;
            color: var(--night);
            margin-bottom: 18px;
        }

        .hero h1 em {
            font-style: italic;
            font-weight: 300;
            color: var(--text-mid);
        }

        .hero p {
            font-size: 15.5px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.7;
            max-width: 88%;
            margin-bottom: 36px;
        }

        /* Trust badges */
        .trust-row {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 36px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-mid);
            font-weight: 400;
        }

        .trust-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--green);
            flex-shrink: 0;
        }

        /* Hero image */
        .hero-img {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
        }

        .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform 0.6s ease;
        }

        .hero-img:hover img { transform: scale(1.03); }

        /* Overlay badge on image */
        .hero-img-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(13,17,23,0.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 12px 16px;
            color: white;
        }

        .hero-img-badge strong {
            display: block;
            font-family: 'Sora', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--green);
            line-height: 1;
            margin-bottom: 3px;
        }

        .hero-img-badge span {
            font-size: 11px;
            opacity: 0.6;
            letter-spacing: 0.04em;
        }

        /* ── RIGHT: SERVICES GRID ── */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* ── CARD BASE ── */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 18px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            min-height: 272px;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
        }

        .card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .card:hover {
            box-shadow: 0 16px 48px rgba(0,0,0,0.07);
            transform: translateY(-3px);
            border-color: #d1d5db;
        }

        .card:hover::after { transform: scaleX(1); }

        /* Dark card */
        .card-dark {
            background: var(--night);
            border-color: transparent;
        }

        .card-dark .card-label { color: rgba(255,255,255,0.4); }
        .card-dark .card-title { color: #fff; }
        .card-dark .card-desc { color: rgba(255,255,255,0.45); }
        .card-dark .price-from { color: rgba(255,255,255,0.35); }
        .card-dark .price-val { color: #fff; }
        .card-dark .card-btn {
            background: rgba(255,255,255,0.07);
            border-color: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.8);
        }
        .card-dark .card-btn:hover {
            background: rgba(255,255,255,0.13);
            color: #fff;
        }
        .card-dark::after { background: rgba(0,196,122,0.7); }

        /* Card content */
        .card-top { flex: 1; }

        .card-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-mid);
            margin-bottom: 14px;
            display: block;
        }

        .card-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: var(--green-dim);
            border: 1px solid var(--green-border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 17px;
            transition: transform 0.3s ease;
        }

        .card:hover .card-icon { transform: scale(1.1) rotate(-5deg); }

        .card-title {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--night);
            margin-bottom: 10px;
        }

        .card-desc {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.6;
            text-align: justify;
        }

        /* Price + button */
        .card-bottom {
            margin-top: 22px;
            padding-top: 18px;
            border-top: 1px solid rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .card-dark .card-bottom { border-top-color: rgba(255,255,255,0.07); }

        .price-from {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-mid);
            margin-bottom: 2px;
        }

        .price-val {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--night);
            white-space: nowrap;
        }

        .price-val.green { color: var(--green); }

        .card-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 12.5px;
            font-weight: 500;
            padding: 9px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            background: transparent;
            color: var(--night);
            text-decoration: none;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .card-btn:hover {
            background: var(--off-white);
            border-color: #c0c7d0;
        }

        .card-btn svg {
            width: 13px; height: 13px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s ease;
        }

        .card:hover .card-btn svg { transform: translateX(3px); }

        /* Badge */
        .badge {
            position: absolute;
            top: 18px;
            right: 18px;
            font-family: 'Sora', sans-serif;
            font-size: 9.5px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 6px;
        }

        .badge-green { background: var(--green); color: #fff; }
        .badge-dark  { background: #1c2333; color: rgba(255,255,255,0.7); }
        .badge-white { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }

        /* Full-width card */
        .card-full {
            grid-column: span 2;
            flex-direction: row;
            align-items: center;
            min-height: auto;
            padding: 28px 32px;
            gap: 32px;
        }

        .card-full .card-top { flex: 1; }
        .card-full .card-desc { margin-bottom: 0; }

        .card-full .card-bottom {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
            border-left: 1px solid var(--border-light);
            padding-left: 32px;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            flex-shrink: 0;
        }

        /* Disclaimer */
        .disclaimer {
            grid-column: span 2;
            font-size: 12px;
            color: #9ca3af;
            text-align: right;
            margin-top: 8px;
            font-weight: 300;
        }

        .disclaimer strong {
            font-weight: 500;
            color: var(--text-mid);
            cursor: pointer;
            text-decoration: underline;
            text-decoration-color: transparent;
            transition: text-decoration-color 0.2s;
        }

        .disclaimer strong:hover { text-decoration-color: var(--text-mid); }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: none; }
        }

        .hero   { animation: fadeUp 0.6s 0.05s both; }
        .services-grid { animation: fadeUp 0.6s 0.15s both; }

        /* ── RESPONSIVE ── */

        /* Tablet */
        @media (max-width: 1024px) {
            body { padding: 48px 0 64px; }

            .containerisa {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero {
                position: relative;
                top: 0;
            }

            .hero h1 { font-size: 38px; }

            .hero p { max-width: 100%; }

            /* Hero image shorter on tablet */
            .hero-img { aspect-ratio: 16/7; }
        }

        /* Large mobile */
        @media (max-width: 768px) {
            body { padding: 36px 0 56px; }

            .containerisa { padding: 0 20px; gap: 32px; }

            .hero h1 { font-size: 32px; letter-spacing: -0.5px; }

            .hero p { font-size: 14.5px; }

            .hero-img { aspect-ratio: 16/9; }

            /* 2-col grid stays on large mobile if cards fit */
            .services-grid { gap: 12px; }

            .card { padding: 22px; min-height: 240px; }

            .card-title { font-size: 15px; }

            /* Full card becomes column */
            .card-full {
                grid-column: span 2;
                flex-direction: column;
                padding: 22px;
                gap: 0;
                align-items: flex-start;
            }

            .card-full .card-bottom {
                border-left: none;
                border-top: 1px solid var(--border-light);
                padding-left: 0;
                padding-top: 16px;
                margin-top: 16px;
                align-items: flex-start;
                width: 100%;
                flex-direction: row;
                justify-content: space-between;
            }
        }

        /* Small mobile */
        @media (max-width: 520px) {
            body { padding: 28px 0 48px; }

            .containerisa { padding: 0 16px; gap: 28px; }

            .hero h1 { font-size: 28px; }

            .hero-eyebrow { font-size: 10px; }

            /* Stack cards to single column */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .card { min-height: auto; }

            .card-full {
                grid-column: span 1;
            }

            .card-full .card-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .card-full .card-bottom .card-btn {
                width: 100%;
                justify-content: center;
            }

            /* Make all buttons full width on small screens */
            .card-bottom {
                flex-wrap: wrap;
            }

            .disclaimer {
                grid-column: span 1;
                text-align: left;
            }

            .hero-img { aspect-ratio: 4/3; }

            .hero-img-badge {
                bottom: 12px;
                left: 12px;
                padding: 10px 12px;
            }

            .hero-img-badge strong { font-size: 16px; }
        }

        /* Very small mobile */
        @media (max-width: 360px) {
            .hero h1 { font-size: 24px; }
            .card-btn { font-size: 11.5px; padding: 8px 12px; }
            .price-val { font-size: 15px; }
        }