:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-soft: #eff6ff;
            --heading: #111827;
            --text: #374151;
            --muted: #6b7280;
            --background: #f6f8fb;
            --surface: #ffffff;
            --border: #e5e7eb;
            --green: #047857;
            --green-bright: #16a34a;
            --green-soft: #ecfdf5;
            --yellow: #92400e;
            --yellow-soft: #fef3c7;
            --red: #b91c1c;
            --red-soft: #fef2f2;
            --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: var(--background);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
        }

        a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Navigation */

        .site-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 82px;
            padding: 10px 40px;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(12px);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            width: 220px;
            height: 60px;
            overflow: hidden;
        }

        .nav-brand img {
            display: block;
            width: 210px;
            height: 60px;
            object-fit: contain;
            object-position: left center;
            transform: scale(2.8);
            transform-origin: left center;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            min-height: 58px;
            color: var(--text);
            font-weight: 600;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .dropdown-link {
            gap: 6px;
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: transform 0.2s ease;
        }

        .dropdown:hover .dropdown-arrow,
        .dropdown:focus-within .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: -14px;
            z-index: 1100;
            display: none;
            min-width: 210px;
            margin: 0;
            padding: 8px;
            list-style: none;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
        }

        .dropdown::after {
            position: absolute;
            top: 100%;
            left: -14px;
            width: 210px;
            height: 10px;
            content: "";
        }

        .dropdown-menu a {
            display: block;
            min-height: auto;
            padding: 11px 13px;
            border-radius: 8px;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }

        .dropdown:hover .dropdown-menu,
        .dropdown:focus-within .dropdown-menu {
            display: block;
        }

        .menu-toggle {
            display: none;
            padding: 8px 12px;
            color: var(--heading);
            background: transparent;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
        }

        /* Buttons */

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 13px 22px;
            border: 2px solid transparent;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition:
                transform 0.2s ease,
                background 0.2s ease,
                border-color 0.2s ease,
                color 0.2s ease;
        }

        .button:hover {
            transform: translateY(-1px);
        }

        .button-primary {
            color: #ffffff;
            background: var(--primary);
        }

        .button-primary:hover {
            color: #ffffff;
            background: var(--primary-dark);
        }

        .button-secondary {
            color: var(--primary);
            background: var(--surface);
            border-color: #bfdbfe;
        }

        .button-secondary:hover {
            color: var(--primary-dark);
            border-color: var(--primary);
        }

        .button-light {
            color: var(--heading);
            background: #ffffff;
        }

        .button-light:hover {
            color: var(--primary);
        }

        /* Hero */

        .product-hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(
                    circle at 12% 20%,
                    rgba(37, 99, 235, 0.15),
                    transparent 31%
                ),
                radial-gradient(
                    circle at 88% 80%,
                    rgba(99, 102, 241, 0.1),
                    transparent 34%
                ),
                var(--surface);
            border-bottom: 1px solid var(--border);
        }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
            align-items: center;
            gap: 70px;
            max-width: 1180px;
            margin: 0 auto;
            padding: 100px 20px 95px;
        }

        .hero-copy {
            max-width: 690px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 24px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 11px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
        }

        .badge-blue {
            color: var(--primary-dark);
            background: #dbeafe;
        }

        .badge-green {
            color: var(--green);
            background: var(--green-soft);
        }

        .hero-copy h1 {
            margin: 0 0 16px;
            color: var(--heading);
            font-size: clamp(52px, 7vw, 78px);
            line-height: 1;
            letter-spacing: -2.5px;
        }

        .hero-tagline {
            margin: 0 0 20px;
            color: var(--primary);
            font-size: 22px;
            font-weight: 700;
        }

        .hero-description {
            max-width: 650px;
            margin: 0;
            color: var(--muted);
            font-size: 19px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 34px;
        }

        .hero-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            color: var(--muted);
            font-size: 14px;
        }

        .hero-details span {
            position: relative;
            padding-left: 20px;
        }

        .hero-details span::before {
            position: absolute;
            left: 0;
            color: var(--green);
            content: "✓";
            font-weight: 800;
        }

        /* Dashboard preview */

        .dashboard-preview {
            position: relative;
            padding: 24px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(229, 231, 235, 0.95);
            border-radius: 24px;
            box-shadow: 0 30px 70px rgba(17, 24, 39, 0.14);
            backdrop-filter: blur(12px);
        }

        .dashboard-preview::before {
            position: absolute;
            inset: -14px;
            z-index: -1;
            content: "";
            background: linear-gradient(
                135deg,
                rgba(37, 99, 235, 0.14),
                rgba(99, 102, 241, 0.06)
            );
            border-radius: 30px;
        }

        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 22px;
        }

        .preview-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .preview-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 17px;
        }

        .preview-logo img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .preview-brand h2 {
            margin: 0;
            color: var(--heading);
            font-size: 23px;
        }

        .preview-brand p {
            margin: 3px 0 0;
            color: var(--muted);
            font-size: 13px;
        }

        .scan-status {
            padding: 6px 10px;
            color: var(--green);
            background: var(--green-soft);
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
        }

        .score-card {
            padding: 23px;
            background: #f9fafb;
            border: 1px solid var(--border);
            border-radius: 16px;
        }

        .score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 16px;
        }

        .score-label {
            color: var(--heading);
            font-weight: 700;
        }

        .score-number {
            color: var(--green-bright);
            font-size: 34px;
            font-weight: 800;
        }

        .score-bar {
            height: 11px;
            overflow: hidden;
            background: #e5e7eb;
            border-radius: 999px;
        }

        .score-fill {
            width: 92%;
            height: 100%;
            background: linear-gradient(
                90deg,
                #22c55e,
                #16a34a
            );
            border-radius: inherit;
        }

        .scan-results {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .result-item {
            padding: 14px;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 11px;
        }

        .result-item strong {
            display: block;
            margin-bottom: 3px;
            color: var(--heading);
            font-size: 14px;
        }

        .result-item span {
            color: var(--muted);
            font-size: 12px;
        }

        .result-warning {
            border-left: 4px solid #f59e0b;
        }

        .result-good {
            border-left: 4px solid #22c55e;
        }

        /* General sections */

        .section {
            padding: 92px 20px;
        }

        .section-inner {
            max-width: 1160px;
            margin: 0 auto;
        }

        .section-heading {
            max-width: 760px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .section-label {
            margin: 0 0 10px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .section-heading h2 {
            margin: 0 0 15px;
            color: var(--heading);
            font-size: clamp(32px, 5vw, 46px);
            line-height: 1.15;
        }

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

        /* Pain points */

        .pain-section {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 23px;
        }

        .pain-card {
            padding: 30px;
            background: #f9fafb;
            border: 1px solid var(--border);
            border-radius: 17px;
        }

        .pain-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin-bottom: 18px;
            color: var(--primary);
            background: #dbeafe;
            border-radius: 11px;
            font-size: 13px;
            font-weight: 800;
        }

        .pain-card h3 {
            margin: 0 0 10px;
            color: var(--heading);
            font-size: 21px;
        }

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

        /* Feature grid */

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .feature-card {
            padding: 30px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 17px;
            box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            margin-bottom: 19px;
            color: var(--primary);
            background: #dbeafe;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 800;
        }

        .feature-card h3 {
            margin: 0 0 10px;
            color: var(--heading);
            font-size: 21px;
        }

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

        /* Checks */

        .checks-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .checks-layout {
            display: grid;
            grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
            gap: 55px;
            align-items: center;
        }

        .checks-copy h2 {
            margin: 0 0 16px;
            color: var(--heading);
            font-size: clamp(32px, 5vw, 45px);
            line-height: 1.15;
        }

        .checks-copy p {
            margin: 0 0 26px;
            color: var(--muted);
            font-size: 18px;
        }

        .checks-copy .button {
            margin-top: 4px;
        }

        .checks-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .check-item {
            position: relative;
            padding: 18px 18px 18px 48px;
            background: #f9fafb;
            border: 1px solid var(--border);
            border-radius: 13px;
        }

        .check-item::before {
            position: absolute;
            top: 18px;
            left: 18px;
            color: var(--green);
            content: "✓";
            font-weight: 800;
        }

        .check-item strong {
            display: block;
            color: var(--heading);
            font-size: 15px;
        }

        .check-item span {
            color: var(--muted);
            font-size: 13px;
        }

        /* How it works */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 23px;
        }

        .step-card {
            position: relative;
            padding: 31px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 17px;
            box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
        }

        .step-number {
            display: block;
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .step-card h3 {
            margin: 0 0 10px;
            color: var(--heading);
            font-size: 22px;
        }

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

        /* Pricing */

        .pricing-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pricing-card {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
            overflow: hidden;
            max-width: 980px;
            margin: 0 auto;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 22px;
            box-shadow: var(--shadow);
        }

        .pricing-summary {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 45px;
            color: #ffffff;
            background: linear-gradient(
                145deg,
                #111827,
                #1e3a8a
            );
        }

        .pricing-label {
            display: inline-flex;
            align-self: flex-start;
            margin-bottom: 22px;
            padding: 6px 11px;
            color: #dbeafe;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
        }

        .pricing-summary h2 {
            margin: 0 0 10px;
            font-size: 37px;
        }

        .price {
            margin: 0 0 17px;
            font-size: 46px;
            font-weight: 800;
        }

        .price span {
            font-size: 17px;
            font-weight: 600;
        }

        .pricing-summary p {
            margin: 0;
            color: #dbeafe;
        }

        .pricing-features {
            padding: 45px;
        }

        .pricing-features h3 {
            margin: 0 0 20px;
            color: var(--heading);
            font-size: 25px;
        }

        .pricing-list {
            display: grid;
            gap: 13px;
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
        }

        .pricing-list li {
            position: relative;
            padding-left: 28px;
        }

        .pricing-list li::before {
            position: absolute;
            left: 0;
            color: var(--green);
            content: "✓";
            font-weight: 800;
        }

        .pricing-note {
            margin: 20px 0 0;
            color: var(--muted);
            font-size: 13px;
        }

        /* FAQ */

        .faq-list {
            display: grid;
            gap: 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            padding: 24px 26px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
        }

        .faq-item h3 {
            margin: 0 0 8px;
            color: var(--heading);
            font-size: 18px;
        }

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

        /* CTA */

        .cta-section {
            padding: 90px 20px;
        }

        .cta-box {
            max-width: 1040px;
            margin: 0 auto;
            padding: 62px 30px;
            color: #ffffff;
            background: linear-gradient(
                135deg,
                #111827,
                #1e3a8a
            );
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .cta-box h2 {
            margin: 0 0 15px;
            font-size: clamp(32px, 5vw, 45px);
        }

        .cta-box p {
            max-width: 680px;
            margin: 0 auto 29px;
            color: #dbeafe;
            font-size: 18px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 13px;
        }

        /* Footer */

        .site-footer {
            padding: 52px 20px;
            color: #d1d5db;
            background: var(--heading);
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr;
            gap: 45px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-brand strong {
            display: block;
            margin-bottom: 10px;
            color: #ffffff;
            font-size: 20px;
        }

        .footer-brand p {
            max-width: 430px;
            margin: 0;
            color: #9ca3af;
        }

        .footer-column h3 {
            margin: 0 0 14px;
            color: #ffffff;
            font-size: 15px;
        }

        .footer-column a {
            display: block;
            margin-bottom: 9px;
            color: #d1d5db;
        }

        .footer-column a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 40px auto 0;
            padding-top: 24px;
            color: #9ca3af;
            border-top: 1px solid #374151;
            font-size: 14px;
        }

        /* Responsive */

        @media (max-width: 980px) {
            .hero-inner,
            .checks-layout,
            .pricing-card {
                grid-template-columns: 1fr;
            }

            .hero-copy {
                max-width: 760px;
                margin: 0 auto;
                text-align: center;
            }

            .hero-badges,
            .hero-actions,
            .hero-details {
                justify-content: center;
            }

            .dashboard-preview {
                max-width: 650px;
                margin: 0 auto;
            }

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

            .pricing-summary {
                text-align: center;
            }

            .pricing-label {
                align-self: center;
            }
        }

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

            .footer-inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 800px) {
            .site-nav {
                flex-wrap: wrap;
                padding: 10px 20px;
            }

            .nav-brand {
                width: 180px;
                height: 55px;
            }

            .nav-brand img {
                width: 175px;
                height: 55px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding-top: 14px;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links > li {
                width: 100%;
            }

            .nav-links > li > a {
                width: 100%;
                min-height: auto;
                padding: 12px 0;
            }

            .dropdown-menu {
                position: static;
                display: block;
                width: 100%;
                min-width: 0;
                margin: 0 0 8px 14px;
                padding: 0 0 0 14px;
                background: transparent;
                border: 0;
                border-left: 2px solid var(--border);
                border-radius: 0;
                box-shadow: none;
            }

            .dropdown::after {
                display: none;
            }

            .dropdown-menu a {
                padding: 9px 0;
            }

            .dropdown-arrow {
                display: none;
            }
        }

        @media (max-width: 650px) {
            .hero-inner {
                padding: 70px 20px 65px;
            }

            .hero-copy h1 {
                letter-spacing: -1px;
            }

            .hero-description {
                font-size: 18px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .button {
                width: 100%;
            }

            .hero-details {
                flex-direction: column;
                align-items: flex-start;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }

            .dashboard-preview {
                padding: 19px;
            }

            .preview-header {
                align-items: flex-start;
            }

            .scan-results,
            .features-grid,
            .checks-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 70px 20px;
            }

            .pricing-summary,
            .pricing-features {
                padding: 32px 24px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }

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

/* WordPress menu integration */
.nav-links .sub-menu{position:absolute;top:100%;left:-14px;z-index:1100;display:none;min-width:210px;margin:0;padding:8px;list-style:none;background:var(--surface,#fff);border:1px solid var(--border,#e5e7eb);border-radius:12px;box-shadow:0 16px 40px rgba(17,24,39,.14)}
.nav-links .menu-item-has-children:hover>.sub-menu,.nav-links .menu-item-has-children:focus-within>.sub-menu{display:block}
.nav-links .sub-menu a{display:block;min-height:auto;padding:11px 13px;border-radius:8px;white-space:nowrap}
.footer-menu{margin:0;padding:0;list-style:none}.footer-menu li{margin:0}.footer-menu a{display:block;margin-bottom:9px}
.custom-logo-link{display:flex;align-items:center;height:60px;overflow:hidden}.custom-logo{display:block;height:60px;object-fit:contain;object-position:left center;transform:none!important}
@media(max-width:800px){.nav-links .sub-menu{position:static;display:block;width:100%;min-width:0;margin:0 0 8px 14px;padding:0 0 0 14px;background:transparent;border:0;border-left:2px solid var(--border,#e5e7eb);border-radius:0;box-shadow:none}.nav-links .sub-menu a{padding:9px 0}}
