
        :root {
            --bg: #f4fbf7;
            --bg-soft: #eaf7ef;
            --card: rgba(255,255,255,.92);
            --card-strong: #ffffff;
            --text: #183126;
            --muted: #617168;
            --primary: #59c987;
            --primary-dark: #2ba96a;
            --secondary: #9fd9b9;
            --border: rgba(44,117,79,.16);
            --shadow: 0 24px 70px rgba(38,91,61,.12);
            --radius: 24px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at 8% 0%, rgba(89,201,135,.14), transparent 34%),
                radial-gradient(circle at 92% 8%, rgba(159,217,185,.22), transparent 30%),
                linear-gradient(180deg, #f8fdf9 0%, #f2faf5 100%);
            color: var(--text);
            line-height: 1.65;
        }

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

        img {
            max-width: 100%;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: rgba(248,253,249,.9);
            border-bottom: 1px solid rgba(44,117,79,.12);
        }

        .nav {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: -.03em;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            color: #123d27;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: 0 12px 28px rgba(101,230,166,.22);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            color: var(--muted);
            font-size: .94rem;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 52px;
            padding: 0 22px;
            border: 0;
            border-radius: 15px;
            font: inherit;
            font-weight: 800;
            cursor: pointer;
            color: #123d27;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 14px 35px rgba(31,207,122,.22);
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 42px rgba(31,207,122,.3);
        }

        .button-secondary {
            color: var(--text);
            background: rgba(255,255,255,.82);
            border: 1px solid var(--border);
            box-shadow: none;
        }

        .hero {
            padding: 88px 0 62px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 48px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 13px;
            border-radius: 999px;
            border: 1px solid rgba(89,201,135,.26);
            background: rgba(89,201,135,.11);
            color: #2f7e52;
            font-size: .86rem;
            font-weight: 700;
        }

        .eyebrow::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 6px rgba(89,201,135,.12);
        }

        h1, h2, h3 {
            margin-top: 0;
            line-height: 1.12;
            letter-spacing: -.045em;
        }

        h1 {
            max-width: 780px;
            margin: 22px 0 24px;
            font-size: clamp(3rem, 7vw, 5.9rem);
        }

        h1 span {
            color: var(--primary);
        }

        .hero-copy {
            max-width: 680px;
            margin: 0 0 32px;
            color: var(--muted);
            font-size: clamp(1.05rem, 1.7vw, 1.25rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-note {
            margin-top: 18px;
            color: #76887d;
            font-size: .9rem;
        }

        .price-card {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border: 1px solid var(--border);
            border-radius: 30px;
            background:
                linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,251,247,.96));
            box-shadow: var(--shadow);
        }

        .price-card::after {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            right: -90px;
            top: -110px;
            border-radius: 50%;
            background: rgba(89,201,135,.18);
            filter: blur(4px);
        }

        .price-label {
            color: var(--muted);
            font-size: .9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .12em;
        }

        .price {
            margin: 12px 0 4px;
            font-size: clamp(3.2rem, 6vw, 5rem);
            font-weight: 800;
            letter-spacing: -.06em;
        }

        .price small {
            display: block;
            color: var(--muted);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0;
        }

        .price-list {
            display: grid;
            gap: 14px;
            margin: 28px 0 30px;
        }

        .check {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #274637;
        }

        .check i {
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            display: grid;
            place-items: center;
            margin-top: 1px;
            border-radius: 50%;
            background: rgba(89,201,135,.13);
            color: var(--primary);
            font-style: normal;
            font-weight: 900;
        }

        section {
            padding: 88px 0;
        }

        .section-heading {
            max-width: 760px;
            margin-bottom: 40px;
        }

        .section-heading h2 {
            margin-bottom: 16px;
            font-size: clamp(2.2rem, 4.5vw, 4rem);
        }

        .section-heading p {
            margin: 0;
            color: var(--muted);
            font-size: 1.08rem;
        }

        .problem-grid,
        .benefit-grid,
        .steps-grid {
            display: grid;
            gap: 20px;
        }

        .problem-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .benefit-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .steps-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .card {
            padding: 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--card);
            box-shadow: 0 18px 45px rgba(38,91,61,.08);
        }

        .card-icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            margin-bottom: 20px;
            border-radius: 17px;
            background: linear-gradient(135deg, rgba(101,230,166,.18), rgba(97,169,255,.15));
            font-size: 1.5rem;
        }

        .card h3 {
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .card p {
            margin: 0;
            color: var(--muted);
        }

        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 28px;
            box-shadow: var(--shadow);
        }

        .comparison-column {
            padding: 38px;
            background: rgba(255,255,255,.84);
        }

        .comparison-column.highlight {
            background:
                radial-gradient(circle at 100% 0%, rgba(89,201,135,.18), transparent 40%),
                rgba(231,247,237,.9);
            border-left: 1px solid var(--border);
        }

        .comparison-column h3 {
            font-size: 1.7rem;
        }

        .comparison-list {
            display: grid;
            gap: 15px;
            margin-top: 25px;
        }

        .comparison-item {
            display: flex;
            gap: 12px;
            color: var(--muted);
        }

        .comparison-item strong {
            color: var(--text);
        }

        .step-number {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            margin-bottom: 20px;
            border-radius: 14px;
            background: var(--primary);
            color: #123d27;
            font-weight: 900;
        }

        .trust {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 28px;
            align-items: stretch;
        }

        .trust-panel {
            padding: 38px;
            border-radius: 28px;
            border: 1px solid var(--border);
            background: var(--card);
        }

        .trust-panel.large {
            background:
                radial-gradient(circle at 100% 0%, rgba(89,201,135,.18), transparent 38%),
                rgba(255,255,255,.94);
        }

        .quote {
            font-size: clamp(1.7rem, 3vw, 2.65rem);
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -.04em;
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 34px;
            align-items: start;
        }

        .contact-info {
            position: sticky;
            top: 108px;
        }

        .contact-info h2 {
            font-size: clamp(2.4rem, 4.5vw, 4.2rem);
        }

        .contact-info p {
            color: var(--muted);
        }

        .contact-points {
            display: grid;
            gap: 16px;
            margin-top: 28px;
        }

        .form-card {
            padding: 34px;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: rgba(255,255,255,.96);
            box-shadow: var(--shadow);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .field {
            display: grid;
            gap: 8px;
        }

        .field.full {
            grid-column: 1 / -1;
        }

        label {
            font-size: .92rem;
            font-weight: 700;
        }

        input,
        select,
        textarea {
            width: 100%;
            min-height: 52px;
            padding: 14px 15px;
            border: 1px solid #efefef;
            border-radius: 14px;
            outline: none;
            font: inherit;
            color: var(--text);
            background: #ffffff;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(89,201,135,.12);
        }

        textarea {
            min-height: 140px;
            resize: vertical;
        }

        select option {
            color: #111;
        }

        .consent {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--muted);
            font-size: .9rem;
        }

        .consent input {
            width: 20px;
            min-height: 20px;
            margin-top: 2px;
        }

        .notice {
            margin-bottom: 20px;
            padding: 14px 16px;
            border-radius: 14px;
            font-weight: 700;
        }

        .notice.success {
            color: #1d6d45;
            background: rgba(89,201,135,.12);
            border: 1px solid rgba(89,201,135,.26);
        }

        .notice.error {
            color: #ffd2d2;
            background: rgba(255,91,91,.12);
            border: 1px solid rgba(255,91,91,.25);
        }

        .faq {
            display: grid;
            gap: 14px;
        }

        details {
            padding: 20px 22px;
            border: 1px solid var(--border);
            border-radius: 18px;
            background: rgba(255,255,255,.84);
        }

        summary {
            cursor: pointer;
            font-weight: 800;
        }

        details p {
            margin: 14px 0 0;
            color: var(--muted);
        }

        footer {
            padding: 38px 0 48px;
            color: #76887d;
            border-top: 1px solid rgba(44,117,79,.12);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .mobile-cta {
            display: none;
        }

        .honeypot {
            position: absolute !important;
            left: -9999px !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        @media (max-width: 980px) {
            .hero-grid,
            .trust,
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            .problem-grid,
            .benefit-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-info {
                position: static;
            }
        }

        @media (max-width: 720px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .nav-links a:not(.button) {
                display: none;
            }

            .nav .button {
                display: none;
            }

            .hero {
                padding-top: 54px;
            }

            h1 {
                font-size: clamp(2.8rem, 14vw, 4.4rem);
            }

            section {
                padding: 66px 0;
            }

            .problem-grid,
            .benefit-grid,
            .steps-grid,
            .comparison,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .comparison-column.highlight {
                border-left: 0;
                border-top: 1px solid var(--border);
            }

            .price-card,
            .form-card,
            .comparison-column,
            .trust-panel {
                padding: 26px;
            }

            .mobile-cta {
                position: fixed;
                left: 14px;
                right: 14px;
                bottom: 14px;
                z-index: 60;
                display: flex;
            }

            .mobile-cta .button {
                width: 100%;
            }

            body {
                padding-bottom: 80px;
            }
        }
    
.blog-hero { padding: 78px 0 42px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; padding-bottom:88px; }
.blog-card { display:flex; flex-direction:column; padding:28px; border:1px solid var(--border); border-radius:var(--radius); background:var(--card); box-shadow:0 18px 45px rgba(38,91,61,.08); }
.blog-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.blog-card .card-icon { margin-bottom:18px; }
.blog-meta { display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:.85rem; margin-bottom:14px; }
.blog-card h2 { font-size:1.45rem; margin-bottom:12px; }
.blog-card p { color:var(--muted); margin:0 0 22px; }
.blog-card .read-more { margin-top:auto; color:#25754c; font-weight:800; }
.article-wrap { width:min(820px,calc(100% - 40px)); margin:0 auto; padding:70px 0 90px; }
.article-wrap h1 { font-size:clamp(2.5rem,6vw,4.7rem); }
.article-wrap h2 { margin-top:42px; font-size:2rem; }
.article-wrap h3 { margin-top:28px; font-size:1.3rem; }
.article-wrap p { font-size:1.08rem; color:#43584c; }
.article-lead { font-size:1.25rem !important; color:var(--muted) !important; }
.article-box { margin:42px 0; padding:28px; border:1px solid var(--border); border-radius:22px; background:#fff; }
.linkedin-box textarea { min-height:280px; }
.blog-home-section { background:rgba(255,255,255,.38); }
.blog-home-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media(max-width:980px){.blog-grid,.blog-home-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:720px){.blog-grid,.blog-home-grid{grid-template-columns:1fr;}.article-wrap{width:min(100% - 28px,820px);}}
