/* inline style 1 from index.html */

        :root {
            --bg-color: #050505;
            --surface-color: #111111;
            --surface-light: #1a1a1a;
            --primary: #00f2fe;
            --secondary: #4facfe;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --font-main: 'Montserrat', sans-serif;
            --hero-poster: url('hero_poster.webp');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            max-width: 100%;
            background: #040506;
            overflow-x: hidden;
        }

        body {
            position: relative;
            max-width: 100%;
            min-height: 100%;
            font-family: var(--font-main);
            background:
                radial-gradient(circle at 12% 10%, rgba(0, 242, 254, 0.14), transparent 24%),
                radial-gradient(circle at 88% 24%, rgba(79, 172, 254, 0.11), transparent 22%),
                radial-gradient(circle at 22% 58%, rgba(0, 242, 254, 0.09), transparent 20%),
                radial-gradient(circle at 78% 82%, rgba(79, 172, 254, 0.1), transparent 24%),
                linear-gradient(180deg, #040506 0%, #06090d 34%, #050608 68%, #040405 100%);
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            isolation: isolate;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.32;
            background:
                linear-gradient(115deg, rgba(255, 255, 255, 0.015) 0%, transparent 35%),
                repeating-linear-gradient(90deg,
                    transparent 0,
                    transparent 118px,
                    rgba(0, 242, 254, 0.03) 119px,
                    transparent 120px),
                repeating-linear-gradient(0deg,
                    transparent 0,
                    transparent 118px,
                    rgba(79, 172, 254, 0.02) 119px,
                    transparent 120px);
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                linear-gradient(180deg, rgba(3, 6, 8, 0.74) 0%, rgba(4, 6, 9, 0.82) 100%),
                var(--hero-poster) center top / cover no-repeat,
                radial-gradient(circle at 50% 18%, rgba(0, 242, 254, 0.08), transparent 18%),
                radial-gradient(circle at 50% 52%, rgba(79, 172, 254, 0.06), transparent 16%),
                radial-gradient(circle at 50% 86%, rgba(0, 242, 254, 0.05), transparent 18%);
            filter: blur(4px) saturate(1.08);
            opacity: 0.52;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 242, 254, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: inset 0 0 0 0 rgba(0, 242, 254, 0.1);
        }

        .btn-outline:hover {
            background: rgba(0, 242, 254, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--text-main), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-left: auto;
        }

        .header-cta {
            padding: 12px 20px;
            font-size: 13px;
            letter-spacing: 0.7px;
            white-space: nowrap;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            overflow: hidden;
            background:
                radial-gradient(circle at 12% 18%, rgba(0, 242, 254, 0.24), transparent 24%),
                radial-gradient(circle at 86% 20%, rgba(79, 172, 254, 0.18), transparent 28%),
                radial-gradient(circle at 52% 82%, rgba(0, 242, 254, 0.14), transparent 34%),
                linear-gradient(180deg, rgba(4, 8, 10, 0.76) 0%, rgba(5, 10, 14, 0.7) 48%, rgba(5, 5, 5, 0.96) 100%);
        }

        .hero .container {
            max-width: 1360px;
        }

        .hero::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: '';
            z-index: -1;
            opacity: 1;
            background:
                linear-gradient(180deg, rgba(4, 7, 10, 0.18) 0%, rgba(5, 7, 10, 0.46) 100%),
                var(--hero-poster) center center / cover no-repeat,
                radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.08), transparent 18%),
                radial-gradient(circle at 70% 30%, rgba(0, 242, 254, 0.16), transparent 22%),
                radial-gradient(circle at 80% 68%, rgba(79, 172, 254, 0.16), transparent 18%),
                linear-gradient(120deg,
                    transparent 0,
                    transparent 18%,
                    rgba(255, 255, 255, 0.05) 18.2%,
                    transparent 18.4%,
                    transparent 100%),
                repeating-linear-gradient(90deg,
                    transparent 0,
                    transparent 115px,
                    rgba(0, 242, 254, 0.05) 116px,
                    transparent 117px),
                repeating-linear-gradient(0deg,
                    transparent 0,
                    transparent 115px,
                    rgba(79, 172, 254, 0.05) 116px,
                    transparent 117px);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 50% 26%, rgba(141, 247, 255, 0.24), transparent 18%),
                linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.74) 68%, rgba(5, 5, 5, 0.98) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 1120px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-shell {
            position: relative;
            margin-bottom: 20px;
            padding: 34px 38px 30px;
            border-radius: 34px;
            background:
                linear-gradient(135deg, rgba(9, 18, 22, 0.52), rgba(8, 12, 14, 0.1)),
                radial-gradient(circle at top right, rgba(0, 242, 254, 0.16), transparent 24%);
            border: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow:
                0 26px 70px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            overflow: hidden;
        }

        .hero-shell::before {
            content: '';
            position: absolute;
            left: 38px;
            right: 38px;
            top: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    rgba(0, 242, 254, 0),
                    rgba(0, 242, 254, 0.42) 24%,
                    rgba(255, 255, 255, 0.22) 50%,
                    rgba(79, 172, 254, 0.42) 76%,
                    rgba(79, 172, 254, 0));
        }

        .hero-shell::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -8%;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.12), transparent 60%);
            filter: blur(14px);
            pointer-events: none;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            margin-bottom: 26px;
            background: rgba(0, 242, 254, 0.1);
            border: 1px solid rgba(0, 242, 254, 0.28);
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: none;
            box-shadow: 0 0 18px rgba(0, 242, 254, 0.12);
        }

        .hero h1 {
            max-width: 1080px;
            font-size: 68px;
            font-weight: 800;
            line-height: 1.06;
            margin-bottom: 28px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .hero h1 span {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--primary);
        }

        .hero p {
            font-size: 21px;
            color: #e0e0e0;
            margin-bottom: 34px;
            max-width: 980px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-btns .btn {
            min-width: 320px;
        }

        .hero-support {
            max-width: 1080px;
            color: #d5d5d5;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .hero-mini-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #dffcff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }

        .hero-mini-link i {
            color: var(--primary);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            margin-bottom: 24px;
        }

        .hero-stat {
            padding: 16px 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
        }

        .hero-stat-value {
            display: block;
            margin-bottom: 6px;
            color: var(--primary);
            font-size: 34px;
            font-weight: 800;
            line-height: 1;
            text-shadow: 0 0 18px rgba(0, 242, 254, 0.24);
        }

        .hero-stat-label {
            display: block;
            color: #eefeff;
            font-size: 14px;
            line-height: 1.45;
        }

        .hero-stat-note {
            color: var(--text-muted);
            font-size: 12px;
            line-height: 1.45;
            display: block;
            margin-top: 5px;
        }

        .hero-proof-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            width: 100%;
            max-width: 1120px;
        }

        .hero-proof-card {
            padding: 18px 18px 16px;
            border-radius: 20px;
            background: rgba(17, 17, 17, 0.68);
            border: 1px solid rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(10px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
        }

        .hero-proof-card strong {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 16px;
            line-height: 1.3;
        }

        .hero-proof-card span {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .hero-proof-card i {
            color: var(--primary);
            margin-right: 10px;
            filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.35));
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: #fff;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
        }

        section {
            padding-top: 100px;
            padding-bottom: 100px;
            position: relative;
            isolation: isolate;
        }

        body > section,
        body > footer {
            position: relative;
            z-index: 1;
        }

        section::after {
            content: '';
            position: absolute;
            inset: 8% 0 auto;
            height: 260px;
            pointer-events: none;
            background:
                linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
                var(--hero-poster) center center / cover no-repeat;
            opacity: 0.1;
            filter: saturate(0.95) blur(0px);
            z-index: -2;
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 24%, rgba(0, 0, 0, 0.95) 76%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 24%, rgba(0, 0, 0, 0.95) 76%, transparent 100%);
        }

        #diagnostic::before,
        #about::before,
        #tariffs::before,
        #traffic::before,
        #faq::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 28px;
            width: min(900px, 92%);
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(0, 242, 254, 0.18) 18%,
                    rgba(255, 255, 255, 0.08) 50%,
                    rgba(79, 172, 254, 0.18) 82%,
                    transparent 100%);
            opacity: 0.55;
        }

        #diagnostic::after,
        #about::after,
        #tariffs::after,
        #traffic::after,
        #faq::after {
            content: '';
            position: absolute;
            inset: 14% 0 auto;
            height: 320px;
            pointer-events: none;
            background:
                radial-gradient(circle at 18% 48%, rgba(0, 242, 254, 0.14), transparent 24%),
                radial-gradient(circle at 82% 46%, rgba(79, 172, 254, 0.12), transparent 24%),
                linear-gradient(90deg, transparent 0%, rgba(95, 244, 255, 0.08) 50%, transparent 100%),
                var(--hero-poster) center center / cover no-repeat;
            filter: blur(3px) saturate(1);
            opacity: 0.48;
            z-index: -1;
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.9) 80%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.9) 80%, transparent 100%);
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(90deg, #fff, var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-lead {
            max-width: 780px;
            margin: -24px auto 0;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.75;
            text-align: center;
        }

        .section-kicker {
            margin-bottom: 18px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
        }

        .diagnostic-section {
            padding-top: 90px;
        }

        .diagnostic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 22px;
            margin-top: 48px;
        }

        .diagnostic-card {
            padding: 28px 24px;
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
        }

        .diagnostic-card i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            margin-bottom: 18px;
            border-radius: 16px;
            background: rgba(0, 242, 254, 0.1);
            color: var(--primary);
            font-size: 22px;
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.15);
        }

        .diagnostic-card h3 {
            font-size: 22px;
            line-height: 1.3;
            margin-bottom: 12px;
            color: #fff;
        }

        .diagnostic-card p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        .diagnostic-result {
            max-width: 940px;
            margin: 30px auto 0;
            padding: 24px 26px;
            border-radius: 24px;
            border: 1px solid rgba(0, 242, 254, 0.24);
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.09), rgba(79, 172, 254, 0.03));
            text-align: center;
        }

        .diagnostic-result strong {
            display: block;
            margin-bottom: 8px;
            font-size: 20px;
            color: #fff;
        }

        .diagnostic-result span {
            color: #dffcff;
            font-size: 16px;
            line-height: 1.7;
        }

        .lead-magnet-section {
            padding-top: 72px;
            padding-bottom: 92px;
            scroll-margin-top: 110px;
        }

        .lead-magnet-shell {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
            gap: 34px;
            align-items: stretch;
            padding: 34px;
            border-radius: 34px;
            background:
                radial-gradient(circle at 14% 14%, rgba(0, 242, 254, 0.18), transparent 24%),
                radial-gradient(circle at 82% 30%, rgba(79, 172, 254, 0.14), transparent 24%),
                linear-gradient(135deg, rgba(14, 20, 24, 0.92), rgba(8, 11, 14, 0.86));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
            overflow: hidden;
        }

        .lead-magnet-shell::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 32%),
                repeating-linear-gradient(90deg, transparent 0, transparent 92px, rgba(0, 242, 254, 0.035) 93px, transparent 94px);
            opacity: 0.72;
        }

        .lead-magnet-copy,
        .lead-magnet-preview {
            position: relative;
            z-index: 1;
        }

        .lead-magnet-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 9px 14px;
            border-radius: 999px;
            color: var(--primary);
            background: rgba(0, 242, 254, 0.1);
            border: 1px solid rgba(0, 242, 254, 0.24);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .lead-magnet-copy h2 {
            max-width: 720px;
            margin-bottom: 18px;
            font-size: clamp(34px, 4.4vw, 58px);
            line-height: 1.05;
            letter-spacing: -1.4px;
        }

        .lead-magnet-copy h2 span {
            color: var(--primary);
            text-shadow: 0 0 24px rgba(0, 242, 254, 0.22);
        }

        .lead-magnet-copy p {
            max-width: 720px;
            margin-bottom: 24px;
            color: #d5dde3;
            font-size: 18px;
            line-height: 1.7;
        }

        .lead-magnet-list {
            display: grid;
            gap: 12px;
            margin-bottom: 28px;
        }

        .lead-magnet-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 13px 15px;
            border-radius: 16px;
            color: #effcff;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .lead-magnet-list i {
            margin-top: 4px;
            color: var(--primary);
        }

        .lead-magnet-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .lead-magnet-actions .btn {
            min-width: 260px;
        }

        .lead-magnet-note {
            max-width: 600px;
            margin-top: 18px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .lead-magnet-preview {
            display: grid;
            align-content: center;
            gap: 16px;
        }

        .lead-magnet-window {
            overflow: hidden;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
        }

        .lead-magnet-window img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            object-position: top center;
        }

        .lead-magnet-window figcaption {
            padding: 16px 18px;
            color: #eafcff;
            font-size: 14px;
            line-height: 1.55;
            background: rgba(7, 10, 12, 0.72);
        }

        .lead-magnet-mini-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .lead-magnet-mini {
            padding: 13px 12px;
            border-radius: 16px;
            background: rgba(0, 242, 254, 0.08);
            border: 1px solid rgba(0, 242, 254, 0.16);
            color: #dffcff;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.35;
        }

        .lead-magnet-header {
            max-width: 980px;
            margin: 0 auto 34px;
            text-align: center;
        }

        .lead-magnet-header .lead-magnet-badge {
            margin-bottom: 18px;
        }

        .lead-magnet-header h2 {
            margin: 0 auto 18px;
            max-width: 980px;
            font-size: clamp(38px, 5.1vw, 66px);
            line-height: 1.04;
            letter-spacing: -1.6px;
        }

        .lead-magnet-header h2 span {
            color: var(--primary);
            text-shadow: 0 0 24px rgba(0, 242, 254, 0.22);
        }

        .lead-magnet-header p {
            max-width: 820px;
            margin: 0 auto;
            color: #cfd8df;
            font-size: 18px;
            line-height: 1.75;
        }

        .lead-magnet-compare {
            margin-bottom: 26px;
        }

        .lead-magnet-copy h3 {
            margin-bottom: 16px;
            color: #fff;
            font-size: clamp(28px, 3.2vw, 44px);
            line-height: 1.08;
            letter-spacing: -1px;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .before-after-card {
            overflow: hidden;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
        }

        .before-after-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: rgba(7, 10, 12, 0.78);
        }

        .before-after-label span {
            color: var(--primary);
        }

        .before-after-card img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            object-position: top center;
        }

        .manual-audit-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
            margin-top: 26px;
        }

        .manual-audit-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 30px;
            border-radius: 28px;
            background:
                radial-gradient(circle at 88% 12%, rgba(0, 242, 254, 0.16), transparent 26%),
                linear-gradient(135deg, rgba(16, 22, 27, 0.9), rgba(8, 11, 14, 0.88));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
            overflow: hidden;
        }

        .manual-audit-card::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 38%);
        }

        .manual-audit-card > * {
            position: relative;
            z-index: 1;
        }

        .manual-audit-card .lead-magnet-badge {
            margin-bottom: 18px;
        }

        .manual-audit-card h3 {
            margin-bottom: 14px;
            color: #fff;
            font-size: clamp(26px, 2.6vw, 38px);
            line-height: 1.12;
            letter-spacing: -0.8px;
        }

        .manual-audit-card p {
            margin-bottom: 20px;
            color: #cfd8df;
            font-size: 16px;
            line-height: 1.7;
        }

        .manual-audit-card .lead-magnet-list {
            flex: 1;
            align-content: start;
            margin-bottom: 24px;
        }

        .manual-audit-card .btn {
            width: 100%;
            margin-top: auto;
        }

        .about-benefits {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            margin-top: 42px;
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-card {
            padding: 30px 28px;
            border-radius: 26px;
            background:
                radial-gradient(circle at top right, rgba(0, 242, 254, 0.12), transparent 30%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
        }

        .about-card-head {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 18px;
        }

        .about-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary);
            font-size: 24px;
            background: rgba(0, 242, 254, 0.09);
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.18);
        }

        .about-card h3 {
            margin: 0;
            font-size: 30px;
            line-height: 1.22;
            color: #fff;
            max-width: 760px;
        }

        .about-card p {
            margin: 0 0 20px;
            color: var(--text-muted);
            font-size: 17px;
            line-height: 1.65;
            max-width: 820px;
        }

        .about-points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px 18px;
        }

        .about-points li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #eafcff;
            font-size: 14px;
            line-height: 1.6;
            padding: 12px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-points i {
            margin-top: 4px;
            color: var(--primary);
            flex-shrink: 0;
        }

        /* ZigZag Features Layout */
        .zigzag-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
        }

        .zigzag-row:last-child {
            margin-bottom: 0;
        }

        .zigzag-row.reverse {
            flex-direction: row-reverse;
        }

        .zigzag-row .img-col {
            flex: 1;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15);
        }

        .zigzag-row .img-col::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid rgba(0, 242, 254, 0.3);
            border-radius: 24px;
            z-index: 2;
            pointer-events: none;
        }

        .zigzag-row .img-col img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .zigzag-row:hover .img-col img {
            transform: scale(1.08);
        }

        .zigzag-row .text-col {
            flex: 1;
        }

        .zigzag-row .text-col h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .zigzag-row .text-col h3 i {
            color: var(--primary);
            font-size: 36px;
            filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
        }

        .zigzag-row .text-col p {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .mt-5 {
            margin-top: 50px;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--surface-color);
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            border-color: rgba(0, 242, 254, 0.2);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .pricing-card.popular {
            background: linear-gradient(180deg, var(--surface-light) 0%, var(--surface-color) 100%);
            border: 2px solid var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15);
            z-index: 2;
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 242, 254, 0.25);
        }

        .badge {
            position: absolute;
            top: -16px;
            right: 35px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            color: #000;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 13px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
        }

        .price-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .price-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .price-desc {
            color: var(--text-muted);
            font-size: 15px;
            margin-bottom: 30px;
            min-height: 45px;
        }

        .tariffs-lead {
            max-width: 760px;
            margin: -20px auto 22px;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.7;
            text-align: center;
        }

        .tariffs-catalog-link {
            text-align: center;
            margin: 40px auto 0;
        }
        .tariffs-catalog-link a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-weight: 800;
            font-size: 18px;
            text-decoration: none;
            padding-bottom: 4px;
            border-bottom: 1px solid rgba(0, 242, 254, 0.45);
        }
        .tariffs-catalog-link a:hover {
            color: #fff;
            border-color: var(--primary);
        }

        .tariffs-audit-banner {
            max-width: 1000px;
            margin: 10px auto 92px;
            padding: 24px 28px;
            border-radius: 24px;
            border: 1px solid rgba(0, 242, 254, 0.24);
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.09), rgba(79, 172, 254, 0.03));
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .tariffs-audit-banner strong {
            display: block;
            font-size: 20px;
            color: #fff;
            margin-bottom: 8px;
        }

        .tariffs-audit-banner span {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.6;
        }

        .tariffs-audit-banner .btn {
            min-width: 270px;
            white-space: nowrap;
        }

        .price-fit {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            margin-bottom: 16px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.7px;
            text-transform: uppercase;
        }

        .price-outcome {
            margin-bottom: 22px;
            color: #d8f9fb;
            font-size: 15px;
            line-height: 1.6;
        }

        .price-amount {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            gap: 6px;
            flex-wrap: wrap;
            font-weight: 800;
            margin-bottom: 28px;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
        }

        .price-amount span {
            text-shadow: none;
        }

        .price-current {
            display: inline-flex;
            align-items: baseline;
            gap: 6px;
            color: var(--primary);
            font-size: 52px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -1.4px;
            text-shadow: 0 0 24px rgba(var(--primary-rgb), 0.28);
        }

        .price-current span {
            color: rgba(255, 255, 255, 0.58);
            font-size: 19px;
            font-weight: 800;
            letter-spacing: 0;
        }

        .price-old {
            position: relative;
            color: rgba(255, 255, 255, 0.34);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0;
            text-shadow: none;
            white-space: nowrap;
        }

        .price-old::after {
            content: '';
            position: absolute;
            left: -4px;
            right: -4px;
            top: 50%;
            height: 1px;
            background: rgba(255, 90, 90, 0.7);
            transform: rotate(-6deg);
        }

        .price-old span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.34);
        }

        .price-save {
            width: fit-content;
            margin-top: 0;
            padding: 0;
            border-radius: 0;
            background: transparent;
            border: none;
            color: rgba(220, 255, 120, 0.86);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.1px;
            text-transform: none;
            text-shadow: none;
        }

        .price-save::before {
            content: 'сейчас ';
            color: rgba(255, 255, 255, 0.42);
            font-weight: 700;
        }

        .price-list {
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .price-list li {
            margin-bottom: 18px;
            font-size: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .price-list i {
            color: var(--primary);
            margin-top: 4px;
            font-size: 14px;
        }

        .pricing-quiz {
            position: relative;
            margin: 54px auto 0;
            max-width: 1120px;
            padding: 28px;
            border-radius: 34px;
            border: 1px solid rgba(var(--primary-rgb), 0.18);
            background:
                radial-gradient(circle at 18% 0%, rgba(var(--primary-rgb), 0.16), transparent 32%),
                radial-gradient(circle at 100% 18%, rgba(220, 255, 72, 0.12), transparent 28%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
            box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
            overflow: hidden;
        }

        .pricing-quiz::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: 33px;
            background:
                linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%),
                repeating-linear-gradient(90deg, transparent 0, transparent 86px, rgba(255, 255, 255, 0.025) 87px, transparent 88px);
            pointer-events: none;
        }

        .quiz-layout {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
            gap: 22px;
            align-items: stretch;
        }

        .quiz-panel,
        .quiz-result {
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(7, 11, 14, 0.66);
            backdrop-filter: blur(12px);
        }

        .quiz-panel {
            padding: 28px;
        }

        .quiz-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: #dfff54;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        .pricing-quiz h3 {
            max-width: 620px;
            margin-bottom: 10px;
            color: #fff;
            font-size: 32px;
            line-height: 1.12;
        }

        .quiz-lead {
            max-width: 650px;
            margin-bottom: 24px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.65;
        }

        .quiz-progress {
            display: grid;
            gap: 9px;
            margin-bottom: 22px;
        }

        .quiz-progress-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .quiz-progress-track {
            height: 8px;
            border-radius: 999px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
        }

        .quiz-progress-fill {
            width: 25%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, #dfff54, var(--primary));
            box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.32);
            transition: width 0.28s ease;
        }

        .quiz-step {
            display: none;
        }

        .quiz-step.active {
            display: block;
            animation: quizFade 0.24s ease;
        }

        .quiz-question {
            margin-bottom: 16px;
            color: #fff;
            font-size: 22px;
            line-height: 1.28;
        }

        .quiz-options {
            display: grid;
            gap: 12px;
        }

        .quiz-option {
            width: 100%;
            min-height: 68px;
            padding: 15px 17px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
            color: #eefcff;
            cursor: pointer;
            text-align: left;
            transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
        }

        .quiz-option:hover,
        .quiz-option.active {
            transform: translateY(-2px);
            border-color: rgba(220, 255, 72, 0.52);
            background: rgba(220, 255, 72, 0.09);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
        }

        .quiz-option strong {
            display: block;
            margin-bottom: 3px;
            font-size: 16px;
            line-height: 1.25;
        }

        .quiz-option span {
            display: block;
            color: rgba(255, 255, 255, 0.62);
            font-size: 13px;
            line-height: 1.45;
        }

        .quiz-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 22px;
        }

        .quiz-back,
        .quiz-reset {
            border: none;
            background: transparent;
            color: rgba(255, 255, 255, 0.58);
            font: inherit;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            transition: color 0.2s ease;
        }

        .quiz-back:hover,
        .quiz-reset:hover {
            color: #fff;
        }

        .quiz-back[disabled] {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .quiz-result {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 28px;
            overflow: hidden;
        }

        .quiz-result.is-pending .quiz-final,
        .quiz-result.is-complete .quiz-pending {
            display: none;
        }

        .quiz-result::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            right: -70px;
            top: -70px;
            border-radius: 50%;
            background: rgba(220, 255, 72, 0.14);
            filter: blur(4px);
        }

        .quiz-result-label {
            position: relative;
            z-index: 1;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.56);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .quiz-discount-box {
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
            padding: 18px;
            border-radius: 22px;
            background:
                radial-gradient(circle at 88% 0%, rgba(220, 255, 72, 0.18), transparent 42%),
                rgba(220, 255, 72, 0.08);
            border: 1px solid rgba(220, 255, 72, 0.24);
        }

        .quiz-discount-value {
            display: block;
            margin-bottom: 6px;
            color: #dfff54;
            font-size: 40px;
            font-weight: 950;
            line-height: 1;
            letter-spacing: -1px;
        }

        .quiz-discount-text {
            display: block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 14px;
            line-height: 1.5;
        }

        .quiz-discount-steps {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .quiz-discount-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 12px;
            font-weight: 900;
            transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .quiz-discount-step.active {
            color: #081008;
            background: #dfff54;
            border-color: rgba(220, 255, 72, 0.6);
            transform: translateY(-2px);
        }

        .quiz-bonus-list {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 12px;
            margin-top: 18px;
        }

        .quiz-bonus-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        .quiz-bonus-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            color: #dfff54;
            font-size: 17px;
            line-height: 1;
            background: rgba(220, 255, 72, 0.1);
            box-shadow: inset 0 0 0 1px rgba(220, 255, 72, 0.22);
        }

        .quiz-bonus-icon i {
            display: block;
            line-height: 1;
        }

        .quiz-bonus-copy {
            min-width: 0;
        }

        .quiz-bonus-tag {
            display: inline-flex;
            width: fit-content;
            margin-bottom: 6px;
            padding: 4px 8px;
            border-radius: 999px;
            color: #081008;
            background: #dfff54;
            font-size: 10px;
            font-weight: 950;
            line-height: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .quiz-bonus-item strong {
            display: block;
            margin-bottom: 3px;
            color: #fff;
            font-size: 14px;
            line-height: 1.25;
        }

        .quiz-bonus-desc {
            display: block;
            color: rgba(255, 255, 255, 0.58);
            font-size: 12px;
            line-height: 1.45;
        }

        .quiz-result-price-wrap {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 8px;
            margin-bottom: 16px;
        }

        .quiz-result-title {
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
            color: #fff;
            font-size: 30px;
            line-height: 1.12;
        }

        .quiz-result-price {
            position: relative;
            z-index: 1;
            margin-bottom: 16px;
            color: #dfff54;
            font-size: 42px;
            font-weight: 950;
            letter-spacing: -1px;
            line-height: 1;
        }

        .quiz-result-price span {
            color: rgba(255, 255, 255, 0.55);
            font-size: 17px;
        }

        .quiz-result-discount {
            width: fit-content;
            padding: 7px 11px;
            border-radius: 999px;
            color: #dfff54;
            background: rgba(220, 255, 72, 0.1);
            border: 1px solid rgba(220, 255, 72, 0.2);
            font-size: 12px;
            font-weight: 900;
        }

        .quiz-result-text {
            position: relative;
            z-index: 1;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.65;
        }

        .quiz-result-list {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 10px;
            margin: 20px 0 24px;
        }

        .quiz-result-list li {
            display: flex;
            gap: 10px;
            color: #edf9f9;
            font-size: 14px;
            line-height: 1.45;
        }

        .quiz-result-list i {
            margin-top: 3px;
            color: #dfff54;
            flex-shrink: 0;
        }

        .quiz-result-actions {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 12px;
            margin-top: auto;
        }

        .quiz-note {
            color: rgba(255, 255, 255, 0.48);
            font-size: 12px;
            line-height: 1.45;
        }

        .payment-section {
            padding-top: 70px;
        }

        .payment-shell {
            position: relative;
            overflow: hidden;
            padding: 46px 36px 38px;
            border-radius: 34px;
            border: 1px solid rgba(220, 255, 72, 0.18);
            background:
                radial-gradient(circle at 12% 12%, rgba(220, 255, 72, 0.14), transparent 28%),
                radial-gradient(circle at 92% 18%, rgba(var(--primary-rgb), 0.12), transparent 28%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
            box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
        }

        .payment-shell::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.38;
            pointer-events: none;
            background:
                repeating-linear-gradient(115deg,
                    transparent 0,
                    transparent 32px,
                    rgba(255, 255, 255, 0.05) 33px,
                    transparent 34px);
            mask-image: linear-gradient(135deg, transparent 0%, #000 36%, transparent 78%);
        }

        .payment-head {
            position: relative;
            z-index: 1;
            max-width: 860px;
            margin-bottom: 34px;
        }

        .payment-head h2 {
            margin-bottom: 12px;
            color: #fff;
            font-size: clamp(34px, 5vw, 58px);
            line-height: 1.05;
            font-weight: 950;
            letter-spacing: -1.8px;
        }

        .payment-head h2 span {
            color: #dfff54;
        }

        .payment-head p {
            max-width: 720px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 18px;
            line-height: 1.65;
        }

        .payment-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .payment-card {
            min-height: 220px;
            padding: 30px;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .payment-percent {
            display: block;
            margin-bottom: 20px;
            color: #dfff54;
            font-size: clamp(56px, 7vw, 76px);
            font-weight: 950;
            line-height: 1;
            letter-spacing: -2px;
            text-shadow: 0 0 28px rgba(220, 255, 72, 0.18);
        }

        .payment-card h3 {
            margin-bottom: 10px;
            color: #fff;
            font-size: 20px;
            line-height: 1.25;
        }

        .payment-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.6;
        }

        @keyframes quizFade {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .price-list .highlight {
            color: #fff;
            font-weight: 600;
            background: rgba(0, 242, 254, 0.15);
            padding: 3px 10px;
            border-radius: 6px;
            border: 1px solid rgba(0, 242, 254, 0.3);
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pricing-secondary {
            font-size: 14px;
            padding-top: 14px;
            padding-bottom: 14px;
        }

        /* Traffic Section */
        .traffic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .traffic-lead,
        .faq-lead {
            max-width: 760px;
            margin: -24px auto 42px;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.75;
            text-align: center;
        }

        .traffic-card {
            background: var(--surface-color);
            padding: 40px;
            border-radius: 24px;
            border-top: 4px solid var(--primary);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .traffic-card:hover {
            background: var(--surface-light);
            transform: translateY(-5px);
        }

        .traffic-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .traffic-card h3 i {
            color: var(--primary);
            font-size: 30px;
            filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
        }

        .traffic-price {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 25px;
            color: #fff;
        }

        .traffic-outcome {
            margin: -6px 0 24px;
            color: #d8f9fb;
            font-size: 15px;
            line-height: 1.65;
        }

        .traffic-list li {
            margin-bottom: 15px;
            font-size: 15px;
            color: var(--text-muted);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .traffic-list i {
            color: var(--secondary);
            margin-top: 4px;
        }

        .bonus-box {
            margin-top: 25px;
            background: rgba(0, 242, 254, 0.05);
            border: 1px dashed var(--primary);
            padding: 20px;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1.6;
        }

        .bonus-box i {
            color: var(--primary);
            margin-right: 5px;
            font-size: 16px;
        }

        .bonus-box strong {
            color: var(--primary);
        }

        .traffic-card-action {
            margin-top: auto;
            padding-top: 28px;
        }

        .traffic-card-action .btn {
            width: 100%;
        }

        /* FAQ */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--surface-color);
            margin-bottom: 15px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0, 1, 0, 1);
            color: var(--text-muted);
        }

        .faq-item.active {
            border-color: rgba(0, 242, 254, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 24px 30px;
            max-height: 500px;
            transition: all 0.4s ease-in-out;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            text-align: center;
            padding: 120px 20px;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('5.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: -1;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, var(--bg-color) 0%, rgba(5, 5, 5, 0.2) 100%);
            z-index: -1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            background: rgba(17, 17, 17, 0.6);
            backdrop-filter: blur(10px);
            padding: 60px 40px;
            border-radius: 30px;
            max-width: 920px;
            margin: 0 auto;
            border: 1px solid rgba(0, 242, 254, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .cta-section h2 {
            max-width: 720px;
            margin: 0 auto 25px;
            font-size: 40px;
            font-weight: 800;
            line-height: 1.15;
        }

        .cta-section p {
            color: #e0e0e0;
            font-size: 20px;
            margin-bottom: 40px;
        }

        .cta-section .btn i {
            margin-right: 10px;
            font-size: 20px;
        }

        /* Form Styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 440px;
            margin: 0 auto;
        }

        .form-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 242, 254, 0.2);
            padding: 15px 20px;
            border-radius: 12px;
            color: #fff;
            font-family: inherit;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
        }

        .contact-method {
            display: grid;
            gap: 10px;
            text-align: left;
        }

        .contact-method-title {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
        }

        .contact-method-options {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .contact-method-option {
            position: relative;
            cursor: pointer;
        }

        .contact-method-option input {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
        }

        .contact-method-option span {
            min-height: 50px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.035);
            color: rgba(255, 255, 255, 0.82);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 800;
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-method-option input:checked + span {
            border-color: rgba(var(--primary-rgb), 0.5);
            background: rgba(var(--primary-rgb), 0.13);
            color: var(--primary);
            box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.16);
        }

        .contact-method-option input:focus-visible + span {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        .contact-form > .btn {
            width: 100%;
            min-height: 64px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            line-height: 1.25;
        }

        .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 10px;
            text-align: left;
            cursor: pointer;
        }

        .checkbox-container input {
            cursor: pointer;
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checkbox-text {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .checkbox-text a {
            color: var(--primary);
            text-decoration: underline;
        }

        .checkbox-text a:hover {
            text-decoration: none;
        }

        .honeypot-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        #form-message {
            margin-top: 20px;
            font-weight: 600;
            display: none;
        }

        #form-message.success {
            color: #00f2fe;
            display: block;
        }

        #form-message.error {
            color: #ff4d4d;
            display: block;
        }

        .selected-service-note {
            margin: 0 auto 18px;
            max-width: 440px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(0, 242, 254, 0.28);
            background: rgba(0, 242, 254, 0.08);
            color: #dffcff;
            font-size: 14px;
            text-align: left;
            display: none;
        }

        .selected-service-note.active {
            display: block;
        }

        .contact-meta {
            margin-top: 16px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            text-align: center;
        }

        .cta-checklist {
            max-width: 760px;
            margin: -12px auto 28px;
            text-align: left;
            display: grid;
            gap: 12px;
        }

        .cta-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            color: #eefeff;
            font-size: 16px;
            line-height: 1.6;
        }

        .cta-checklist i {
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .contact-direct {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 440px;
            margin: 0 auto 24px;
        }

        .contact-direct-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 18px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .contact-direct-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 242, 254, 0.28);
            background: rgba(255, 255, 255, 0.06);
        }

        .contact-direct-icon {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            background: rgba(0, 242, 254, 0.12);
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.18);
        }

        .contact-direct-label {
            display: block;
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 3px;
        }

        .contact-direct-value {
            display: block;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .contact-direct-note {
            display: block;
            margin-top: 5px;
            color: #d2d2d2;
            font-size: 13px;
            line-height: 1.45;
        }

        .proof-cases-section {
            padding-top: 94px;
            padding-bottom: 40px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(4, 7, 10, 0.24) 0%, rgba(4, 6, 8, 0.06) 100%);
        }

        .proof-cases-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(0, 242, 254, 0.14), transparent 24%),
                radial-gradient(circle at 78% 26%, rgba(79, 172, 254, 0.14), transparent 24%),
                var(--hero-poster) center center / cover no-repeat;
            opacity: 0.22;
            z-index: -1;
            filter: saturate(0.94);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 16%, rgba(0, 0, 0, 0.88) 84%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 16%, rgba(0, 0, 0, 0.88) 84%, transparent 100%);
        }

        .proof-cases-lead {
            max-width: 780px;
            margin: -24px auto 0;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.75;
            text-align: center;
        }

        .proof-cases-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .proof-case-card {
            padding: 28px 24px;
            border-radius: 24px;
            background:
                radial-gradient(circle at top right, rgba(0, 242, 254, 0.12), transparent 26%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
        }

        .proof-case-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(0, 242, 254, 0.12);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .proof-case-card h3 {
            font-size: 28px;
            line-height: 1.2;
            margin-bottom: 14px;
            color: #fff;
        }

        .proof-case-card p {
            margin: 0 0 18px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .proof-case-list {
            display: grid;
            gap: 10px;
        }

        .proof-case-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #e8f7fa;
            font-size: 14px;
            line-height: 1.6;
        }

        .proof-case-list i {
            margin-top: 3px;
            color: var(--primary);
            flex-shrink: 0;
        }

        footer {
            background: #000;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 12px;
            font-size: 13px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.42);
            transition: color 0.2s ease;
        }

        .footer-links a:hover,
        .footer-cookie-button:hover {
            color: var(--primary);
        }

        .footer-cookie-button {
            border: 0;
            padding: 0;
            background: transparent;
            color: rgba(255, 255, 255, 0.42);
            font: inherit;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .cookie-consent {
            position: fixed;
            left: clamp(14px, 4vw, 42px);
            right: clamp(14px, 4vw, 42px);
            bottom: clamp(14px, 4vw, 32px);
            z-index: 1000;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 22px;
            align-items: center;
            max-width: 1120px;
            margin: 0 auto;
            padding: 18px;
            border: 1px solid rgba(223, 255, 84, 0.22);
            border-radius: 24px;
            background:
                linear-gradient(145deg, rgba(25, 31, 21, 0.96), rgba(8, 11, 12, 0.96));
            box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
            backdrop-filter: blur(18px);
        }

        .cookie-consent[hidden] {
            display: none;
        }

        .cookie-consent-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
            color: #fff;
            font-size: 16px;
            font-weight: 900;
        }

        .cookie-consent-title i {
            color: var(--primary);
        }

        .cookie-consent-text {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.55;
        }

        .cookie-consent-text a {
            color: var(--primary);
            font-weight: 800;
            text-decoration: underline;
        }

        .cookie-consent-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .cookie-consent-button {
            min-height: 46px;
            padding: 0 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.86);
            font-family: inherit;
            font-size: 13px;
            font-weight: 900;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .cookie-consent-button:hover {
            transform: translateY(-2px);
            border-color: rgba(223, 255, 84, 0.36);
            background: rgba(255, 255, 255, 0.09);
        }

        .cookie-consent-button.primary {
            border-color: transparent;
            background: linear-gradient(135deg, #dfff54, #c8ff35);
            color: #071008;
            box-shadow: 0 14px 34px rgba(223, 255, 84, 0.22);
        }

        #faq .faq-item {
            border-color: rgba(var(--secondary-rgb), 0.08);
        }

        #faq .faq-question {
            width: 100%;
            min-height: 78px;
            color: var(--text-main);
            user-select: none;
        }

        #faq .faq-question i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            flex: 0 0 28px;
            color: var(--primary);
            transform: rotate(0deg);
            transition: transform 0.28s ease;
        }

        #faq .faq-answer {
            max-height: 0;
            padding: 0 30px;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.34s ease, padding 0.34s ease, opacity 0.24s ease;
        }

        #faq .faq-answer p {
            margin: 0;
        }

        #faq .faq-item.active {
            border-color: rgba(var(--primary-rgb), 0.26);
        }

        #faq .faq-item.active .faq-answer {
            max-height: 420px;
            padding: 0 30px 28px;
            opacity: 1;
        }

        #faq .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #fff;
        }

        @media (max-width: 992px) {
            .pricing-card.popular {
                transform: scale(1);
                z-index: 1;
            }

            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }

            .zigzag-row {
                gap: 40px;
            }

            .about-points {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(5, 5, 5, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                gap: 40px;
            }

            .header-actions {
                margin-left: 0;
            }

            .header-cta {
                display: none;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 20px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-shell {
                padding: 22px 18px 20px;
                border-radius: 24px;
            }

            .hero-kicker {
                font-size: 11px;
                letter-spacing: 0.7px;
            }

            .hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .hero-btns .btn {
                width: 100%;
                min-width: 0;
            }

            .hero-support {
                font-size: 15px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .hero-stat {
                padding: 14px 14px 12px;
            }

            .hero-stat-value {
                font-size: 26px;
            }

            .hero-stat-label {
                font-size: 13px;
            }

            .hero-proof-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-proof-card {
                padding: 14px;
            }

            .hero-proof-card strong {
                font-size: 14px;
            }

            .hero-proof-card span {
                font-size: 13px;
            }

            .section-title {
                font-size: 34px;
                margin-bottom: 40px;
            }

            .zigzag-row,
            .zigzag-row.reverse {
                flex-direction: column;
                gap: 30px;
                margin-bottom: 60px;
            }

            .zigzag-row .text-col h3 {
                font-size: 26px;
            }

            .about-card {
                padding: 24px 22px;
            }

            .about-card h3 {
                font-size: 24px;
            }

            .about-card p {
                font-size: 16px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .tariffs-lead {
                font-size: 16px;
            }

            .section-lead,
            .traffic-lead,
            .faq-lead {
                font-size: 16px;
            }

            .tariffs-audit-banner {
                padding: 18px;
                grid-template-columns: 1fr;
            }

            .quiz-layout {
                grid-template-columns: 1fr;
            }

            .pricing-quiz,
            .quiz-panel,
            .quiz-result {
                border-radius: 22px;
            }

            .pricing-quiz {
                padding: 18px;
            }

            .quiz-panel,
            .quiz-result {
                padding: 20px;
            }

            .pricing-quiz h3 {
                font-size: 26px;
            }

            .quiz-question {
                font-size: 19px;
            }

            .quiz-result-title {
                font-size: 26px;
            }

            .quiz-result-price {
                font-size: 36px;
            }

            .cta-content {
                padding: 40px 20px;
            }

            .cta-section h2 {
                font-size: 30px;
            }

            .diagnostic-result strong {
                font-size: 18px;
            }

            .diagnostic-result span,
            .cta-checklist li {
                font-size: 14px;
            }

            .proof-cases-grid,
            .contact-direct {
                grid-template-columns: 1fr;
            }

            .proof-cases-lead {
                font-size: 16px;
            }

            .proof-case-card h3 {
                font-size: 24px;
            }

            .contact-direct-value {
                font-size: 18px;
            }
        }
    

/* inline style 2 from index.html */

        /* Portfolio */
        .portfolio-section {
            padding-top: 110px;
            padding-bottom: 110px;
            background:
                linear-gradient(180deg, rgba(5, 8, 11, 0.28) 0%, rgba(5, 6, 8, 0.08) 100%);
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 0%, rgba(79, 172, 254, 0.16), transparent 28%),
                var(--hero-poster) center center / cover no-repeat;
            opacity: 0.24;
            filter: saturate(0.95);
            z-index: -1;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
        }

        .portfolio-head {
            max-width: 780px;
            margin: 0 auto 55px;
            text-align: center;
        }

        .portfolio-kicker {
            margin-bottom: 18px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .portfolio-intro {
            color: var(--text-muted);
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .portfolio-card {
            opacity: 0;
            height: 100%;
            transform: translateY(24px) scale(0.98);
            transition: opacity 0.45s ease, transform 0.45s ease;
        }

        .portfolio-card.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .portfolio-card-link {
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
            padding: 0;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: var(--surface-color);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-align: left;
        }

        .portfolio-card-link:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 242, 254, 0.35);
            box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
        }

        .portfolio-preview {
            position: relative;
            flex-shrink: 0;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(79, 172, 254, 0.25), rgba(0, 242, 254, 0.05)),
                #0f0f0f;
        }

        .portfolio-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            transition: transform 0.5s ease;
        }

        .portfolio-card-link:hover .portfolio-preview img {
            transform: scale(1.04);
        }

        .portfolio-overlay {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            pointer-events: none;
        }

        .portfolio-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 16px 18px 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
        }

        .portfolio-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(0, 242, 254, 0.14);
            color: var(--primary);
            font-size: 11px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .portfolio-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            min-width: 126px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 11px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-align: center;
        }

        .portfolio-action i {
            margin-right: 8px;
            color: var(--primary);
        }

        .portfolio-open {
            color: #fff;
            font-size: 18px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(7, 12, 14, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .portfolio-card-link:hover .portfolio-open {
            transform: translateX(3px);
            background: rgba(0, 242, 254, 0.2);
        }

        .portfolio-footer {
            margin-top: 34px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .portfolio-progress {
            color: var(--text-muted);
            font-size: 15px;
        }

        .portfolio-load-more {
            min-width: 210px;
        }

        .portfolio-sentinel {
            width: 100%;
            height: 1px;
            margin-top: 10px;
        }

        .portfolio-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 28px;
            background: rgba(3, 5, 6, 0.88);
            backdrop-filter: blur(14px);
        }

        .portfolio-modal.is-open {
            display: flex;
        }

        .portfolio-modal-dialog {
            position: relative;
            width: min(1280px, 100%);
            max-height: calc(100vh - 56px);
            padding: 18px;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(16, 16, 16, 0.96);
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
        }

        .portfolio-modal-frame {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: #090909;
        }

        .portfolio-modal-image {
            width: 100%;
            max-height: calc(100vh - 150px);
            display: block;
            object-fit: contain;
            object-position: top center;
            margin: 0 auto;
        }

        .portfolio-modal-close,
        .portfolio-modal-nav {
            position: absolute;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(7, 12, 14, 0.8);
            color: #fff;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .portfolio-modal-close:hover,
        .portfolio-modal-nav:hover {
            background: rgba(0, 242, 254, 0.18);
            transform: translateY(-2px);
        }

        .portfolio-modal-close {
            top: 16px;
            right: 16px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 22px;
        }

        .portfolio-modal-nav {
            top: 50%;
            width: 52px;
            height: 52px;
            margin-top: -26px;
            border-radius: 50%;
            font-size: 20px;
        }

        .portfolio-modal-prev {
            left: 16px;
        }

        .portfolio-modal-next {
            right: 16px;
        }

        .portfolio-modal-counter {
            display: flex;
            justify-content: center;
            margin-top: 16px;
            color: #dffcff;
            font-size: 14px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding-top: 90px;
                padding-bottom: 90px;
            }

            .portfolio-intro {
                font-size: 16px;
            }

            .reviews-lead {
                font-size: 16px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .portfolio-footer {
                align-items: stretch;
                flex-direction: column;
            }

            .portfolio-load-more {
                width: 100%;
            }

            .portfolio-content {
                padding: 14px 16px 16px;
            }

            .portfolio-action {
                min-width: auto;
                padding-left: 12px;
                padding-right: 12px;
            }

            .portfolio-modal {
                padding: 12px;
            }

            .portfolio-modal-dialog {
                padding: 10px;
                border-radius: 20px;
            }

            .portfolio-modal-image {
                max-height: calc(100vh - 110px);
            }

            .portfolio-modal-close {
                top: 10px;
                right: 10px;
                width: 42px;
                height: 42px;
            }

            .portfolio-modal-nav {
                width: 44px;
                height: 44px;
                margin-top: -22px;
            }
        }
    

/* inline style 3 from index.html */

        /* Reviews Ticker */
        .reviews-section {
            padding-bottom: 0;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 20%, rgba(0, 242, 254, 0.14), transparent 28%),
                linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
                var(--hero-poster) center center / cover no-repeat;
            opacity: 0.24;
            z-index: -1;
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 18%, rgba(0, 0, 0, 0.92) 82%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 18%, rgba(0, 0, 0, 0.92) 82%, transparent 100%);
        }

        .reviews-lead {
            max-width: 760px;
            margin: -24px auto 18px;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.75;
            text-align: center;
        }

        .ticker-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 100%;
            max-width: 100vw;
            padding: 40px 0;
            overflow: hidden;
            contain: paint;
        }

        .ticker-wrapper {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        .ticker-right {
            animation: marquee-right 120s linear infinite;
        }

        .ticker-left {
            animation: marquee-left 120s linear infinite;
        }

        .ticker-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes marquee-right {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        @keyframes marquee-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .review-card {
            background: var(--surface-color);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 25px;
            width: 350px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            border-color: var(--primary);
            background: var(--surface-light);
            transform: translateY(-5px);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .review-user {
            font-weight: 700;
            font-size: 16px;
        }

        .review-stars {
            color: #ffc107;
            font-size: 14px;
        }

        .review-text {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .review-meta {
            margin-top: 15px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            display: flex;
            justify-content: space-between;
        }
    

/* inline style 4 from index.html */

        /* Editorial Conversion Reset */
        :root {
            --bg-color: #07090c;
            --surface-color: #10151b;
            --surface-light: #161d24;
            --surface-strong: #1c242d;
            --primary: #d5ff57;
            --secondary: #f4f7ef;
            --text-main: #f6f7f4;
            --text-muted: #9da8b2;
            --line-color: rgba(255, 255, 255, 0.08);
            --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.36);
            --primary-rgb: 213, 255, 87;
            --secondary-rgb: 244, 247, 239;
            --accent-rgb: 74, 92, 112;
            --panel-rgb: 16, 21, 27;
            --font-main: 'Manrope', sans-serif;
        }

        ::selection {
            background: rgba(var(--primary-rgb), 0.28);
            color: #0a0d0a;
        }

        body {
            font-family: var(--font-main);
            background:
                radial-gradient(circle at 14% 10%, rgba(var(--primary-rgb), 0.12), transparent 20%),
                radial-gradient(circle at 86% 12%, rgba(var(--secondary-rgb), 0.07), transparent 18%),
                radial-gradient(circle at 50% 52%, rgba(var(--accent-rgb), 0.16), transparent 32%),
                radial-gradient(circle at 20% 88%, rgba(var(--primary-rgb), 0.06), transparent 22%),
                linear-gradient(180deg, #050709 0%, #080b10 38%, #07090c 100%);
            background-color: #050709;
        }

        body::before {
            opacity: 0.7;
            background:
                linear-gradient(125deg, rgba(255, 255, 255, 0.03) 0%, transparent 24%),
                repeating-linear-gradient(90deg,
                    transparent 0,
                    transparent 127px,
                    rgba(255, 255, 255, 0.02) 128px,
                    transparent 129px),
                repeating-linear-gradient(0deg,
                    transparent 0,
                    transparent 127px,
                    rgba(var(--primary-rgb), 0.03) 128px,
                    transparent 129px);
        }

        body::after {
            background:
                radial-gradient(circle at 50% 12%, rgba(var(--secondary-rgb), 0.08), transparent 14%),
                radial-gradient(circle at 18% 34%, rgba(var(--primary-rgb), 0.08), transparent 18%),
                radial-gradient(circle at 80% 30%, rgba(var(--accent-rgb), 0.14), transparent 24%),
                radial-gradient(circle at 52% 78%, rgba(var(--primary-rgb), 0.06), transparent 20%);
            filter: blur(54px);
            opacity: 0.95;
        }

        .container {
            max-width: 1280px;
            padding-left: 28px;
            padding-right: 28px;
        }

        header {
            padding: 18px 0;
            background: rgba(7, 9, 12, 0.82);
            backdrop-filter: blur(18px);
            border-bottom-color: rgba(var(--secondary-rgb), 0.07);
        }

        .header-wrap {
            gap: 28px;
        }

        .logo {
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            -webkit-text-fill-color: initial;
            color: var(--secondary);
            font-size: 23px;
            letter-spacing: 1.4px;
        }

        .nav-links a {
            position: relative;
            color: rgba(244, 247, 239, 0.88);
            letter-spacing: 0.9px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            right: auto;
            bottom: -8px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.42);
            transition: width 0.28s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.is-active {
            color: var(--primary);
        }

        .nav-links a.is-active::after {
            width: 100%;
        }

        .btn {
            border-radius: 18px;
            font-weight: 800;
            letter-spacing: 0.7px;
            text-transform: none;
        }

        .btn-primary {
            background: var(--primary);
            color: #0a0e09;
            box-shadow: 0 16px 44px rgba(var(--primary-rgb), 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 52px rgba(var(--primary-rgb), 0.24);
        }

        .btn-outline {
            color: var(--secondary);
            border-color: rgba(var(--secondary-rgb), 0.18);
            background: rgba(255, 255, 255, 0.02);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        }

        .btn-ghost {
            color: var(--secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
        }

        .header-cta {
            padding: 14px 22px;
        }

        .hero {
            min-height: 100vh;
            padding-top: 116px;
            padding-bottom: 88px;
            align-items: flex-start;
            background:
                radial-gradient(circle at 50% 22%, rgba(var(--secondary-rgb), 0.08), transparent 16%),
                linear-gradient(180deg, rgba(8, 10, 14, 0.24) 0%, rgba(7, 9, 12, 0.9) 100%);
        }

        .hero .container {
            max-width: 1340px;
        }

        .hero::before {
            background:
                radial-gradient(circle at 16% 20%, rgba(var(--primary-rgb), 0.14), transparent 20%),
                radial-gradient(circle at 84% 18%, rgba(var(--secondary-rgb), 0.08), transparent 18%),
                radial-gradient(circle at 64% 70%, rgba(var(--accent-rgb), 0.22), transparent 26%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0%, transparent 18%),
                repeating-linear-gradient(90deg,
                    transparent 0,
                    transparent 132px,
                    rgba(255, 255, 255, 0.018) 133px,
                    transparent 134px),
                repeating-linear-gradient(0deg,
                    transparent 0,
                    transparent 132px,
                    rgba(var(--primary-rgb), 0.025) 133px,
                    transparent 134px);
            opacity: 1;
        }

        .hero::after {
            background:
                radial-gradient(circle at 50% 18%, rgba(var(--secondary-rgb), 0.08), transparent 16%),
                linear-gradient(180deg, rgba(5, 7, 10, 0.18) 0%, rgba(5, 7, 10, 0.78) 72%, rgba(5, 7, 10, 0.98) 100%);
        }

        .hero-content {
            max-width: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            align-items: stretch;
        }

        .hero-shell {
            margin-bottom: 0;
            padding: 44px 44px 40px;
            border-radius: 34px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
                linear-gradient(135deg, rgba(var(--panel-rgb), 0.94), rgba(11, 15, 20, 0.88));
            border: 1px solid rgba(var(--secondary-rgb), 0.08);
            box-shadow: var(--shadow-strong);
            backdrop-filter: blur(18px);
        }

        .hero-shell::before {
            left: 44px;
            right: 44px;
            background: linear-gradient(90deg,
                    rgba(var(--primary-rgb), 0),
                    rgba(var(--primary-rgb), 0.34) 24%,
                    rgba(255, 255, 255, 0.14) 50%,
                    rgba(var(--secondary-rgb), 0.28) 76%,
                    rgba(var(--secondary-rgb), 0));
        }

        .hero-shell::after {
            top: auto;
            right: -2%;
            bottom: -12%;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1), transparent 62%);
            filter: blur(28px);
        }

        .hero-kicker,
        .section-kicker,
        .portfolio-kicker,
        .proof-case-kicker,
        .portfolio-index {
            color: var(--primary);
        }

        .hero-kicker,
        .portfolio-index,
        .proof-case-kicker {
            background: rgba(var(--primary-rgb), 0.1);
            border: 1px solid rgba(var(--primary-rgb), 0.2);
            box-shadow: none;
        }

        .hero-kicker {
            margin-bottom: 24px;
        }

        .hero h1 {
            max-width: 900px;
            font-size: clamp(56px, 6.3vw, 88px);
            line-height: 0.98;
            letter-spacing: -0.05em;
            margin-bottom: 24px;
            text-wrap: balance;
            text-shadow: none;
        }

        .hero h1 span {
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            -webkit-text-fill-color: initial;
            color: var(--primary);
        }

        .hero h1 span::after {
            display: none;
        }

        .hero p {
            max-width: 900px;
            margin-bottom: 30px;
            color: #d8dde2;
            font-size: 22px;
            line-height: 1.55;
            text-shadow: none;
        }

        .hero-btns {
            gap: 16px;
            margin-bottom: 26px;
        }

        .hero-btns .btn {
            min-width: 0;
        }

        .hero-support {
            max-width: 860px;
            margin-bottom: 0;
            color: var(--text-muted);
            font-size: 17px;
            line-height: 1.7;
        }

        .hero-mini-link {
            display: inline-flex;
            margin-top: 18px;
            color: rgba(var(--secondary-rgb), 0.86);
        }

        .hero-mini-link i,
        .cta-checklist i,
        .traffic-list i,
        .price-icon,
        .faq-question i,
        .about-card-icon,
        .diagnostic-card i,
        .hero-proof-card i,
        .contact-direct-icon {
            color: var(--primary);
        }

        .hero-stats {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 24px;
        }

        .hero-stat,
        .hero-proof-card,
        .diagnostic-card,
        .about-card,
        .proof-case-card,
        .pricing-card,
        .traffic-card,
        .review-card,
        .portfolio-card-link,
        .faq-item,
        .cta-content,
        .contact-direct-card {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
                linear-gradient(135deg, rgba(var(--panel-rgb), 0.92), rgba(11, 15, 20, 0.86));
            border-color: rgba(var(--secondary-rgb), 0.08);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
        }

        .hero-stat {
            padding: 18px 18px 16px;
            border-radius: 22px;
            position: relative;
            overflow: hidden;
        }

        .hero-stat::before {
            content: '';
            position: absolute;
            inset: 0 auto auto 0;
            width: 64px;
            height: 3px;
            background: var(--primary);
            opacity: 0.9;
        }

        .hero-stat-value,
        .price-amount,
        .traffic-price {
            color: var(--secondary);
            text-shadow: none;
        }

        .hero-stat-label,
        .hero-stat-note,
        .hero-proof-card span,
        .section-lead,
        .portfolio-intro,
        .reviews-lead,
        .proof-cases-lead,
        .faq-lead,
        .traffic-lead,
        .price-desc,
        .price-outcome,
        .traffic-outcome,
        .contact-direct-note,
        .contact-meta,
        .review-text,
        .review-meta {
            color: var(--text-muted);
        }

        .hero-proof-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            max-width: none;
            align-content: stretch;
        }

        .hero-proof-card {
            padding: 20px 20px 18px;
            border-radius: 24px;
            backdrop-filter: blur(14px);
        }

        .hero-proof-card strong {
            color: var(--text-main);
            font-size: 16px;
            line-height: 1.35;
        }

        .hero-proof-card span {
            display: block;
            font-size: 14px;
            line-height: 1.55;
        }

        section {
            padding-top: 112px;
            padding-bottom: 112px;
        }

        section::after {
            inset: 0 0 auto;
            height: 100%;
            background:
                linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.012) 18%, transparent 38%, transparent 100%),
                radial-gradient(circle at 20% 26%, rgba(var(--primary-rgb), 0.04), transparent 20%),
                radial-gradient(circle at 82% 42%, rgba(var(--accent-rgb), 0.08), transparent 26%);
            opacity: 0.85;
            filter: none;
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.96) 14%, rgba(0, 0, 0, 0.96) 86%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.96) 14%, rgba(0, 0, 0, 0.96) 86%, transparent 100%);
        }

        #diagnostic::before,
        #about::before,
        #tariffs::before,
        #traffic::before,
        #faq::before {
            top: 24px;
            width: min(980px, 92%);
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(var(--primary-rgb), 0.2) 18%,
                    rgba(255, 255, 255, 0.08) 50%,
                    rgba(var(--secondary-rgb), 0.16) 82%,
                    transparent 100%);
            opacity: 0.75;
        }

        #diagnostic::after,
        #about::after,
        #tariffs::after,
        #traffic::after,
        #faq::after,
        .proof-cases-section::before,
        .portfolio-section::before,
        .reviews-section::before,
        .cta-section::before {
            background:
                radial-gradient(circle at 18% 38%, rgba(var(--primary-rgb), 0.08), transparent 22%),
                radial-gradient(circle at 82% 30%, rgba(var(--secondary-rgb), 0.05), transparent 18%),
                radial-gradient(circle at 50% 72%, rgba(var(--accent-rgb), 0.16), transparent 28%);
            opacity: 1;
            filter: blur(18px);
            mask-image: none;
            -webkit-mask-image: none;
        }

        .section-kicker,
        .portfolio-kicker {
            margin-bottom: 14px;
            font-size: 13px;
            letter-spacing: 2.8px;
        }

        .section-title {
            max-width: 980px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 28px;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            -webkit-text-fill-color: initial;
            color: var(--text-main);
            font-size: clamp(38px, 4.2vw, 62px);
            line-height: 1.02;
            letter-spacing: -0.045em;
            text-wrap: balance;
        }

        .section-lead,
        .portfolio-intro,
        .proof-cases-lead,
        .reviews-lead,
        .faq-lead,
        .traffic-lead {
            max-width: 860px;
            font-size: 18px;
            line-height: 1.75;
        }

        .diagnostic-card,
        .about-card,
        .proof-case-card,
        .traffic-card,
        .faq-item {
            border-radius: 28px;
        }

        .diagnostic-card,
        .about-card,
        .proof-case-card {
            padding: 30px 28px;
        }

        .diagnostic-card h3,
        .proof-case-card h3,
        .traffic-card h3,
        .about-card h3,
        .price-title,
        .review-user,
        .contact-direct-value {
            color: var(--text-main);
        }

        .diagnostic-card i,
        .about-card-icon,
        .contact-direct-icon {
            background: rgba(var(--primary-rgb), 0.08);
            box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.16);
        }

        .diagnostic-result,
        .tariffs-audit-banner,
        .bonus-box,
        .selected-service-note {
            background: rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.16);
            color: var(--text-main);
            box-shadow: none;
        }

        .portfolio-section,
        .proof-cases-section,
        .reviews-section,
        .cta-section {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .portfolio-card-link {
            border-radius: 28px;
            overflow: hidden;
            transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
        }

        .portfolio-card-link:hover,
        .review-card:hover,
        .traffic-card:hover,
        .pricing-card:hover,
        .contact-direct-card:hover {
            transform: translateY(-4px);
            border-color: rgba(var(--primary-rgb), 0.24);
            box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
        }

        .portfolio-preview {
            background: #0c1116;
            aspect-ratio: 16 / 11;
        }

        .portfolio-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        .portfolio-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 20px 22px 22px;
            background: rgba(255, 255, 255, 0.015);
        }

        .portfolio-index {
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 11px;
            line-height: 1;
            letter-spacing: 0.4px;
            white-space: nowrap;
            text-transform: none;
        }

        .portfolio-action {
            padding: 0;
            border: none;
            background: transparent;
            color: rgba(var(--secondary-rgb), 0.86);
        }

        .portfolio-open {
            width: 58px;
            height: 58px;
            background: rgba(7, 9, 12, 0.72);
            border-color: rgba(var(--secondary-rgb), 0.12);
            backdrop-filter: blur(10px);
        }

        .portfolio-card-link:hover .portfolio-open {
            background: rgba(var(--primary-rgb), 0.16);
        }

        .portfolio-progress {
            color: var(--text-muted);
        }

        .portfolio-modal {
            background: rgba(4, 6, 8, 0.82);
            backdrop-filter: blur(18px);
        }

        .portfolio-modal-dialog {
            background: rgba(10, 14, 18, 0.92);
            border: 1px solid rgba(var(--secondary-rgb), 0.08);
            box-shadow: var(--shadow-strong);
        }

        .portfolio-modal-close,
        .portfolio-modal-nav {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .portfolio-modal-close:hover,
        .portfolio-modal-nav:hover {
            background: rgba(var(--primary-rgb), 0.16);
        }

        .pricing-card {
            border-radius: 30px;
            padding: 40px 34px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
                linear-gradient(135deg, rgba(16, 21, 27, 0.96), rgba(11, 15, 20, 0.88));
        }

        .pricing-card.popular {
            border-color: rgba(var(--primary-rgb), 0.22);
            box-shadow: 0 24px 60px rgba(var(--primary-rgb), 0.09), var(--shadow-strong);
        }

        .badge {
            color: #0a0d09;
            background: var(--primary);
            box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.2);
        }

        .price-fit {
            color: var(--primary);
            background: rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.16);
        }

        .price-list li,
        .traffic-list li,
        .about-points li,
        .cta-checklist li {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.04);
        }

        .traffic-card {
            border-radius: 28px;
            padding: 30px 28px;
        }

        #traffic {
            padding-bottom: 38px;
        }

        .reviews-section {
            padding-top: 46px;
        }

        .traffic-card h3 {
            line-height: 1.15;
        }

        .traffic-card-action .btn,
        .pricing-actions .btn {
            width: 100%;
        }

        .reviews-section .section-title,
        .faq .section-title {
            max-width: 920px;
        }

        .faq-item.active,
        .faq-item:hover {
            border-color: rgba(var(--primary-rgb), 0.18);
        }

        .faq-question {
            color: var(--text-main);
        }

        .cta-section::after {
            background:
                linear-gradient(180deg, rgba(7, 9, 12, 0.12) 0%, rgba(7, 9, 12, 0.88) 100%),
                radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.08), transparent 20%),
                radial-gradient(circle at 80% 28%, rgba(var(--secondary-rgb), 0.06), transparent 18%);
        }

        .cta-content {
            max-width: 1120px;
            padding: 46px 42px;
            border-radius: 34px;
            backdrop-filter: blur(18px);
        }

        .cta-content h2 {
            color: var(--text-main);
            font-size: clamp(40px, 4.4vw, 64px);
            line-height: 1.02;
            letter-spacing: -0.05em;
            text-wrap: balance;
        }

        .cta-content p {
            color: #d3dae1;
        }

        .contact-direct-card {
            border-radius: 24px;
        }

        .contact-direct-card:hover {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
                linear-gradient(135deg, rgba(var(--panel-rgb), 0.94), rgba(11, 15, 20, 0.9));
        }

        .form-input {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(var(--secondary-rgb), 0.12);
            color: var(--text-main);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.46);
        }

        .form-input:focus {
            border-color: rgba(var(--primary-rgb), 0.38);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
        }

        .checkbox-container {
            border-color: rgba(var(--secondary-rgb), 0.08);
            background: rgba(255, 255, 255, 0.025);
        }

        .checkbox-container input {
            accent-color: var(--primary);
        }

        .ticker-right,
        .ticker-left {
            animation-duration: 140s;
        }

        .btn {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: -2px;
            z-index: -1;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 42%, transparent 62%);
            transform: translateX(-120%) skewX(-18deg);
            transition: transform 0.7s ease;
        }

        .btn:hover::before {
            transform: translateX(120%) skewX(-18deg);
        }

        .btn:active {
            transform: scale(0.985);
        }

        .hero-proof-card,
        .diagnostic-card,
        .about-card,
        .proof-case-card,
        .pricing-card,
        .portfolio-card-link,
        .quiz-option,
        .quiz-result,
        .faq-item,
        .contact-direct-card,
        .cta-content {
            backface-visibility: hidden;
        }

        .hero-stat,
        .hero-proof-card,
        .price-icon,
        .about-card-icon,
        .diagnostic-card i {
            transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.28s ease;
        }

        .hero-stat:hover,
        .hero-proof-card:hover,
        .pricing-card:hover .price-icon,
        .about-card:hover .about-card-icon,
        .diagnostic-card:hover i {
            transform: translateY(-4px) scale(1.03);
            filter: drop-shadow(0 0 18px rgba(var(--primary-rgb), 0.35));
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.001ms !important;
            }
        }

        @media (max-width: 1180px) {
            .hero-proof-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .lead-magnet-shell {
                grid-template-columns: 1fr;
            }

            .manual-audit-grid {
                grid-template-columns: 1fr;
            }

            .payment-grid {
                grid-template-columns: 1fr;
            }

            .about-benefits {
                grid-template-columns: 1fr;
            }

            .hero h1,
            .hero p,
            .hero-support {
                max-width: none;
            }
        }

        @media (max-width: 900px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .hero-shell,
            .cta-content {
                padding: 34px 24px 30px;
                border-radius: 28px;
            }

            .hero h1 {
                font-size: clamp(42px, 11vw, 62px);
            }

            .hero p {
                font-size: 18px;
            }

            .hero-stats,
            .hero-proof-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .lead-magnet-shell {
                padding: 28px 22px;
                border-radius: 28px;
            }

            .payment-shell {
                padding: 34px 24px 28px;
                border-radius: 28px;
            }

            .payment-head {
                margin-bottom: 24px;
            }

            .payment-card {
                min-height: auto;
                padding: 24px;
            }

            .section-title,
            .cta-content h2 {
                font-size: clamp(34px, 9vw, 50px);
            }

            .portfolio-content {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 640px) {
            .cookie-consent {
                grid-template-columns: 1fr;
                padding: 16px;
            }

            .cookie-consent-actions {
                justify-content: stretch;
            }

            .cookie-consent-button {
                flex: 1 1 100%;
            }

            .header-cta {
                padding: 12px 16px;
            }

            .hero {
                padding-top: 104px;
                padding-bottom: 70px;
            }

            .hero-btns {
                flex-direction: column;
            }

            .hero-btns .btn {
                width: 100%;
            }

            .lead-magnet-section {
                padding-top: 54px;
                padding-bottom: 72px;
            }

            .lead-magnet-copy h2 {
                letter-spacing: -0.8px;
            }

            .lead-magnet-actions .btn {
                width: 100%;
                min-width: 0;
            }

            .lead-magnet-mini-grid {
                grid-template-columns: 1fr;
            }

            .before-after-grid {
                grid-template-columns: 1fr;
            }

            .manual-audit-card {
                padding: 24px 20px;
                border-radius: 24px;
            }

            .hero-stats,
            .hero-proof-grid {
                grid-template-columns: 1fr;
            }

            .hero-stat,
            .hero-proof-card,
            .lead-magnet-window,
            .payment-card,
            .diagnostic-card,
            .about-card,
            .proof-case-card,
            .pricing-card,
            .traffic-card,
            .cta-content,
            .contact-direct-card {
                border-radius: 24px;
            }

            .section-kicker,
            .portfolio-kicker {
                letter-spacing: 2.2px;
            }
        }

        /* Final FAQ override: the block is static, not a spoiler accordion. */
        #faq .faq-answer,
        #faq .faq-item:not(.active) .faq-answer,
        #faq .faq-item.active .faq-answer {
            display: block !important;
            max-height: none !important;
            padding: 0 30px 28px !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        #faq .faq-question {
            cursor: default !important;
            pointer-events: none;
        }

        #faq .faq-question i,
        #faq .faq-item:not(.active) .faq-question i,
        #faq .faq-item.active .faq-question i {
            display: none !important;
        }
    

/* Local lightweight icon fallback instead of loading the full Font Awesome CDN. */
.fa-solid, .fa-brands { display:inline-flex; align-items:center; justify-content:center; font-style:normal; font-family:inherit; line-height:1; speak:never; }
.fa-solid::before, .fa-brands::before { display:inline-block; line-height:1; }
.fa-bars::before { content:'☰'; }
.fa-xmark::before { content:'×'; }
.fa-bullseye::before { content:'◎'; }
.fa-gift::before { content:'🎁'; }
.fa-layer-group::before { content:'▧'; }
.fa-eye::before { content:'◉'; }
.fa-magnifying-glass-chart::before { content:'⌕'; }
.fa-users-viewfinder::before { content:'▣'; }
.fa-rocket::before { content:'✦'; }
.fa-calendar-check::before { content:'✓'; }
.fa-wand-magic-sparkles::before { content:'✣'; }
.fa-telegram::before { content:'✈'; }
.fa-check::before { content:'✓'; }
.fa-chart-line::before { content:'⌁'; }
.fa-chart-simple::before { content:'▥'; }
.fa-bullhorn::before { content:'▸'; }
.fa-shield-heart::before { content:'◆'; }
.fa-user-ninja::before { content:'●'; }
.fa-hand-pointer::before { content:'☝'; }
.fa-handshake-angle::before { content:'◇'; }
.fa-chevron-left::before { content:'‹'; }
.fa-chevron-right::before { content:'›'; }
.fa-box-open::before { content:'◫'; }
.fa-star::before { content:'★'; }
.fa-gem::before { content:'◇'; }
.fa-arrow-right::before { content:'→'; }
.fa-arrow-left::before { content:'←'; }
.fa-plus::before { content:'+'; }
.fa-phone::before { content:'☎'; }
.fa-whatsapp::before { content:'◌'; }
.fa-paper-plane::before { content:'➤'; }
.fa-cookie-bite::before { content:'●'; }
.fa-up-right-and-down-left-from-center::before { content:'↗'; }
.fa-images::before { content:'▧'; }
.fa-spinner::before { content:'◌'; }
.fa-spin::before { animation: local-fa-spin .8s linear infinite; }
@keyframes local-fa-spin { to { transform: rotate(360deg); } }


/* Performance/CLS guards. */
img { max-width:100%; height:auto; }
.lead-compare-card img, .lead-magnet-visual img { aspect-ratio: 16 / 10; object-fit: cover; background:#101417; }
.lead-compare-card--after img { aspect-ratio: 1200 / 2223; }
.portfolio-preview { aspect-ratio: 16 / 10; contain: layout paint; }
.portfolio-preview img { width:100%; height:100%; object-fit:cover; background:#101417; }
.portfolio-card-link { min-height: 100%; }
.reviews-grid, .portfolio-grid { content-visibility:auto; contain-intrinsic-size: 900px; }
