:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-soft: #eff6ff;
            --heading: #111827;
            --text: #374151;
            --muted: #6b7280;
            --background: #f6f8fb;
            --surface: #ffffff;
            --border: #e5e7eb;
            --green: #047857;
            --green-soft: #ecfdf5;
            --error: #b91c1c;
            --error-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;
        }

        button,
        input,
        select,
        textarea {
            font: inherit;
        }

        /* 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;
            cursor: pointer;
            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);
        }

        /* Hero */

        .services-hero {
            padding: 96px 20px 84px;
            text-align: center;
            background:
                radial-gradient(
                    circle at 15% 20%,
                    rgba(37, 99, 235, 0.14),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 88% 75%,
                    rgba(99, 102, 241, 0.1),
                    transparent 32%
                ),
                var(--surface);
            border-bottom: 1px solid var(--border);
        }

        .eyebrow {
            display: inline-flex;
            margin-bottom: 20px;
            padding: 8px 14px;
            color: var(--primary-dark);
            background: #dbeafe;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
        }

        .services-hero h1 {
            max-width: 900px;
            margin: 0 auto 22px;
            color: var(--heading);
            font-size: clamp(42px, 7vw, 66px);
            line-height: 1.06;
            letter-spacing: -2px;
        }

        .services-hero p {
            max-width: 760px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 20px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-top: 34px;
        }

        /* Section defaults */

        .section {
            padding: 88px 20px;
        }

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

        .section-heading {
            max-width: 760px;
            margin: 0 auto 48px;
            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, 45px);
            line-height: 1.15;
        }

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

        /* Services */

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

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

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

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

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

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

        /* Process */

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .process-card {
            position: relative;
            padding: 27px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
        }

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

        .process-card h3 {
            margin: 0 0 9px;
            color: var(--heading);
            font-size: 20px;
        }

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

        /* Contact area */

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

        .contact-layout {
            display: grid;
            grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
            gap: 45px;
            align-items: start;
        }

        .contact-information {
            padding: 34px;
            color: #ffffff;
            background:
                linear-gradient(
                    145deg,
                    #111827,
                    #1e3a8a
                );
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .contact-information h2 {
            margin: 0 0 14px;
            font-size: 33px;
            line-height: 1.15;
        }

        .contact-information > p {
            margin: 0 0 28px;
            color: #dbeafe;
        }

        .contact-point {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
        }

        .contact-point:last-child {
            padding-bottom: 0;
        }

        .contact-point strong {
            display: block;
            margin-bottom: 5px;
            color: #ffffff;
        }

        .contact-point span {
            color: #cbd5e1;
        }

        .contact-information a {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* Form */

        .request-form {
            padding: 38px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .request-form h2 {
            margin: 0 0 8px;
            color: var(--heading);
            font-size: 31px;
        }

        .form-intro {
            margin: 0 0 28px;
            color: var(--muted);
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            color: var(--heading);
            font-size: 14px;
            font-weight: 700;
        }

        .required {
            color: var(--error);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 13px 14px;
            color: var(--text);
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-radius: 9px;
            outline: none;
            transition:
                border-color 0.2s ease,
                box-shadow 0.2s ease;
        }

        .form-group textarea {
            min-height: 155px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
        }

        .field-help {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 5px;
        }

        .checkbox-group label {
            color: var(--muted);
            font-size: 13px;
            font-weight: 400;
        }

        .form-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 26px;
        }

        .form-footer p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
        }

        .submit-button {
            border: 0;
        }

        .submit-button:disabled {
            cursor: not-allowed;
            opacity: 0.7;
            transform: none;
        }

        .form-result {
            display: none;
            margin-top: 22px;
            padding: 15px 17px;
            border-radius: 9px;
            font-size: 14px;
            font-weight: 700;
        }

        .form-result.success {
            display: block;
            color: var(--green);
            background: var(--green-soft);
            border: 1px solid #a7f3d0;
        }

        .form-result.error {
            display: block;
            color: var(--error);
            background: var(--error-soft);
            border: 1px solid #fecaca;
        }

        /* Suitable projects */

        .project-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            max-width: 950px;
            margin: 0 auto;
        }

        .project-item {
            position: relative;
            padding: 20px 22px 20px 52px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
        }

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

        .project-item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--heading);
        }

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

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

        /* Honeypot */

        .hidden-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        /* Responsive */

        @media (max-width: 960px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }

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

            .process-grid {
                grid-template-columns: repeat(2, minmax(0, 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;
            }

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

        @media (max-width: 650px) {
            .services-hero {
                padding: 68px 20px 62px;
            }

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

            .services-hero p {
                font-size: 18px;
            }

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

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

            .section {
                padding: 68px 20px;
            }

            .services-grid,
            .process-grid,
            .project-list,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .request-form {
                padding: 27px 22px;
            }

            .form-footer {
                flex-direction: column;
                align-items: stretch;
            }

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