
        /* ===== CSS VARIABLES ===== */
        :root {
            --primary: #0052cc;
            --primary-dark: #003d99;
            --primary-light: #e8f0fe;
            --accent: #e63939;
            --accent-dark: #c62828;
            --dark: #1a1a1a;
            --gray-900: #212121;
            --gray-700: #424242;
            --gray-500: #757575;
            --gray-300: #e0e0e0;
            --gray-100: #f5f5f5;
            --light: #f8f9fa;
            --white: #ffffff;
            --green: #2e7d32;
            --shadow-card: 0 8px 25px rgba(0,0,0,0.08);
            --shadow-header: 0 2px 12px rgba(0,0,0,0.10);
            --radius: 8px;
            --radius-lg: 16px;
            --transition: 0.25s ease;
            --max-width: 1280px;
            --header-height: 72px;
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

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

        img { max-width: 100%; }

        ul { list-style: none; }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        #site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: var(--shadow-header);
            transition: box-shadow var(--transition);
        }

        #site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            padding: 0 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .logo-wrap {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-name {
            font-size: 22px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .logo-sub {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-500);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links {
            display: flex;
            gap: 24px;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-700);
            transition: color var(--transition);
            white-space: nowrap;
        }

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

        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 17px;
            font-weight: 800;
            white-space: nowrap;
            transition: background var(--transition), transform var(--transition);
            text-decoration: none;
        }

        .header-phone:hover {
            background: var(--accent-dark);
            transform: scale(1.03);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--dark);
            transition: var(--transition);
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile nav */
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 0;
            background: var(--white);
            border-top: 1px solid var(--gray-300);
            padding: 8px 0;
        }

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

        .mobile-nav a {
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-100);
        }

        .mobile-nav a:hover {
            background: var(--light);
            color: var(--primary);
        }

        .mobile-nav .mobile-phone {
            padding: 14px 24px;
            font-size: 18px;
            font-weight: 800;
            color: var(--accent);
        }

        /* ===== ACCENT BAR ===== */
        .accent-bar {
            background: var(--accent);
            color: var(--white);
            text-align: center;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            z-index: 999;
        }

        .accent-bar span {
            opacity: 0.85;
            margin: 0 8px;
        }

        /* Offset for fixed header + accent bar */
        body {
            padding-top: calc(var(--header-height) + 36px);
        }

        /* ===== LOKALIZATOR BAR ===== */
        .lokalizator-bar {
            background: var(--gray-100);
            border-bottom: 1px solid var(--gray-300);
            padding: 14px 0;
        }

        .lokalizator-inner {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .lokalizator-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-700);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .lokalizator-form {
            display: flex;
            flex: 1;
            gap: 8px;
            min-width: 280px;
        }

        .lokalizator-input {
            flex: 1;
            padding: 10px 16px;
            border: 1.5px solid var(--gray-300);
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: border-color var(--transition);
        }

        .lokalizator-input:focus {
            border-color: var(--primary);
        }

        .lokalizator-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 22px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition);
            font-family: inherit;
        }

        .lokalizator-btn:hover {
            background: var(--primary-dark);
        }

        .lokalizator-result {
            width: 100%;
            margin-top: 8px;
            padding: 10px 16px;
            background: var(--white);
            border: 1.5px solid var(--primary);
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: none;
        }

        .lokalizator-result.visible {
            display: block;
        }

        /* ===== HERO ===== */
        .hero {
            background: url('/images/hero-bg.jpg') center center / cover no-repeat;
            padding: 80px 0 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(13,36,71,0.75) 40%, rgba(26,58,108,0.7) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .hero-headline {
            font-size: clamp(36px, 5.5vw, 62px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }

        .hero-sub {
            font-size: clamp(16px, 2.2vw, 20px);
            color: rgba(255,255,255,0.78);
            font-weight: 600;
            margin-bottom: 38px;
            letter-spacing: 0.3px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .btn-primary-hero {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            font-size: 18px;
            font-weight: 800;
            padding: 18px 36px;
            border-radius: 8px;
            text-decoration: none;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            box-shadow: 0 4px 20px rgba(230,57,57,0.4);
            letter-spacing: 0.2px;
        }

        .btn-primary-hero:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230,57,57,0.5);
        }

        .btn-secondary-hero {
            display: inline-block;
            background: transparent;
            color: var(--white);
            font-size: 17px;
            font-weight: 700;
            padding: 17px 34px;
            border-radius: 8px;
            border: 2px solid rgba(255,255,255,0.6);
            text-decoration: none;
            transition: background var(--transition), border-color var(--transition);
        }

        .btn-secondary-hero:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
        }

        .hero-trust {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .hero-trust-item {
            font-size: 14px;
            color: rgba(255,255,255,0.80);
            font-weight: 600;
        }

        .hero-trust-item::before {
            content: '✓';
            color: #4caf50;
            margin-right: 6px;
            font-weight: 900;
        }

        /* ===== GWARANCJE / TRUST SIGNALS ===== */
        .trust-section {
            background: var(--light);
            padding: 60px 0;
            border-bottom: 1px solid var(--gray-300);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .trust-card {
            background: var(--white);
            padding: 32px 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: transform var(--transition);
        }

        .trust-card:hover {
            transform: translateY(-4px);
        }

        .trust-icon {
            font-size: 42px;
            margin-bottom: 14px;
            display: block;
        }

        .trust-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .trust-desc {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.5;
        }

        /* ===== USŁUGI ===== */
        .services-section {
            background: var(--white);
            padding: 72px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .section-title {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 900;
            color: var(--dark);
            letter-spacing: -0.5px;
            line-height: 1.15;
        }

        .section-sub {
            font-size: 16px;
            color: var(--gray-500);
            margin-top: 12px;
        }

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

        .service-card {
            background: var(--white);
            border: 1.5px solid var(--gray-300);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
        }

        .service-card:hover {
            box-shadow: var(--shadow-card);
            border-color: var(--primary);
            transform: translateY(-4px);
        }

        .service-icon {
            font-size: 38px;
            margin-bottom: 16px;
            display: block;
        }

        .service-title {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .service-desc {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.55;
        }

        .service-cta {
            display: inline-block;
            margin-top: 18px;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .service-cta:hover {
            text-decoration: underline;
        }

        /* ===== DLACZEGO ZIĘBUD ===== */
        .why-section {
            background: var(--white);
            padding: 72px 0;
            border-top: 1px solid var(--gray-100);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .why-title {
            font-size: clamp(26px, 2.8vw, 36px);
            font-weight: 900;
            color: var(--dark);
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .why-intro {
            font-size: 16px;
            color: var(--gray-700);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .why-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .why-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.5;
        }

        .why-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            margin-top: 1px;
        }

        .why-image-placeholder {
            border-radius: var(--radius-lg);
            min-height: 380px;
            position: relative;
            overflow: hidden;
        }

        .why-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: var(--radius-lg);
        }

        .why-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10,22,40,0.85));
            padding: 30px 24px 20px;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 1;
        }

        .why-image-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 4px;
        }

        /* ===== OPINIE ===== */
        .reviews-section {
            background: var(--light);
            padding: 72px 0;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }

        .review-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card);
        }

        .review-stars {
            font-size: 20px;
            margin-bottom: 14px;
            line-height: 1;
        }

        .review-text {
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.65;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .review-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
        }

        .review-location {
            font-size: 13px;
            color: var(--gray-500);
        }

        .reviews-aggregate {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }

        .reviews-aggregate span {
            color: #f9a825;
        }

        /* ===== CTA BAR ===== */
        .cta-bar {
            background: var(--accent);
            padding: 50px 0;
        }

        .cta-bar-inner {
            text-align: center;
        }

        .cta-bar-text {
            font-size: clamp(18px, 2.5vw, 26px);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-bar-phone {
            display: inline-block;
            font-size: clamp(28px, 4.5vw, 52px);
            font-weight: 900;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -1px;
            transition: opacity var(--transition);
            border-bottom: 3px solid rgba(255,255,255,0.4);
            padding-bottom: 4px;
        }

        .cta-bar-phone:hover {
            opacity: 0.85;
        }

        /* ===== CENNIK ===== */
        .pricing-section {
            background: var(--white);
            padding: 72px 0;
        }

        .pricing-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 28px;
        }

        .pricing-table th {
            background: var(--primary);
            color: var(--white);
            padding: 14px 20px;
            text-align: left;
            font-size: 14px;
            font-weight: 700;
        }

        .pricing-table th:last-child {
            text-align: right;
        }

        .pricing-table td {
            padding: 14px 20px;
            font-size: 15px;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-300);
        }

        .pricing-table td:last-child {
            text-align: right;
            font-weight: 700;
            color: var(--dark);
        }

        .pricing-table tr:hover td {
            background: var(--light);
        }

        .pricing-free {
            color: var(--green) !important;
            font-weight: 800 !important;
        }

        .pricing-note {
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 24px;
            text-align: center;
        }

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

        .btn-primary {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            transition: background var(--transition), transform var(--transition);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        /* ===== DZIELNICE ===== */
        .districts-section {
            background: var(--light);
            padding: 72px 0;
        }

        .districts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .district-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 18px 20px;
            box-shadow: var(--shadow-card);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .district-card:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }

        .district-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
        }

        .district-time {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 10px;
            border-radius: 50px;
        }

        /* ===== FORMULARZ ===== */
        .contact-section {
            background: var(--white);
            padding: 72px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 60px;
        }

        .contact-info {
            /* left column */
        }

        .contact-info-title {
            font-size: 24px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 28px;
        }

        .contact-info-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .contact-info-icon {
            font-size: 22px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-info-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 3px;
        }

        .contact-info-value {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.5;
        }

        .contact-info-value a {
            color: var(--accent);
            text-decoration: none;
        }

        .contact-info-value a:hover {
            text-decoration: underline;
        }

        .contact-info-meta {
            margin-top: 28px;
            padding: 18px;
            background: var(--light);
            border-radius: var(--radius);
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* Form */
        .contact-form-wrap {
            /* right column */
        }

        .contact-form-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: var(--gray-700);
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--gray-300);
            border-radius: 6px;
            font-size: 15px;
            font-family: inherit;
            color: var(--dark);
            background: var(--white);
            outline: none;
            transition: border-color var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
        }

        .form-control::placeholder {
            color: var(--gray-500);
        }

        select.form-control {
            cursor: pointer;
        }

        .checkbox-wrap {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 22px;
        }

        .checkbox-wrap input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
            accent-color: var(--primary);
        }

        .checkbox-label {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.5;
        }

        .form-submit {
            width: 100%;
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            font-family: inherit;
            letter-spacing: 0.3px;
            transition: background var(--transition), transform var(--transition);
        }

        .form-submit:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .form-callback {
            text-align: center;
            font-size: 13px;
            color: var(--gray-500);
            margin-top: 10px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px 24px;
            background: var(--light);
            border-radius: var(--radius-lg);
        }

        .form-success.visible {
            display: block;
        }

        .form-success-icon {
            font-size: 56px;
            margin-bottom: 16px;
        }

        .form-success-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .form-success-sub {
            font-size: 15px;
            color: var(--gray-500);
        }

        .map-wrap {
            margin-top: 48px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .map-wrap iframe {
            width: 100%;
            height: 380px;
            display: block;
            border: none;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--light);
            padding: 72px 0;
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            user-select: none;
            transition: background var(--transition);
        }

        .faq-question:hover {
            background: var(--light);
        }

        .faq-icon {
            font-size: 22px;
            font-weight: 300;
            color: var(--primary);
            flex-shrink: 0;
            transition: transform var(--transition);
            line-height: 1;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.65;
            border-top: 1px solid var(--gray-300);
            padding-top: 16px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.65);
            padding: 40px 0 28px;
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
        }

        .footer-brand {
            /* col 1 */
        }

        .footer-logo-name {
            font-size: 20px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 6px;
        }

        .footer-logo-sub {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 14px;
        }

        .footer-slogan {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            line-height: 1.5;
        }

        .footer-col-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-contact-line {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .footer-contact-phone {
            font-size: 18px;
            font-weight: 800;
            color: var(--accent);
        }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-copy {
            font-size: 12px;
            color: rgba(255,255,255,0.40);
            text-align: center;
        }

        .footer-meta {
            font-size: 11px;
            color: rgba(255,255,255,0.30);
            text-align: center;
        }

        .footer-links-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links-row a {
            font-size: 12px;
            color: rgba(255,255,255,0.40);
            transition: color var(--transition);
        }

        .footer-links-row a:hover {
            color: rgba(255,255,255,0.75);
        }

        .footer-partners {
            text-align: center;
            font-size: 11px;
            color: rgba(255,255,255,0.30);
        }

        .footer-partners a {
            color: rgba(255,255,255,0.40);
            transition: color var(--transition);
        }

        .footer-partners a:hover {
            color: rgba(255,255,255,0.65);
        }

        /* ===== FLOATING ELEMENTS ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 165px;
            right: 28px;
            z-index: 998;
            background: #25d366;
            color: var(--white);
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 20px rgba(37,211,102,0.40);
            text-decoration: none;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 28px rgba(37,211,102,0.55);
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 68px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--dark);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 6px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition);
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        .mobile-phone-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 997;
            background: var(--accent);
            padding: 14px 24px;
            text-align: center;
            box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
            transform: translateY(100%);
            transition: transform 0.35s ease;
        }

        .mobile-phone-bar.visible {
            transform: translateY(0);
        }

        .mobile-phone-bar a {
            color: var(--white);
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
        }

        /* ===== SECTION SCROLL OFFSETS ===== */
        .scroll-target {
            scroll-margin-top: calc(var(--header-height) + 36px + 16px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

        @media (max-width: 768px) {
            :root {
                --header-height: 64px;
            }

            .nav-links,
            .header-phone {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header-phone-mobile-show {
                display: block;
                font-size: 14px;
                font-weight: 800;
                color: var(--accent);
            }

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

            .services-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .why-image-placeholder {
                min-height: 260px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 24px;
            }

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

            .mobile-phone-bar {
                display: block;
            }

            .lokalizator-inner {
                flex-direction: column;
                align-items: stretch;
            }

            .lokalizator-form {
                min-width: 0;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                width: 100%;
                max-width: 340px;
                text-align: center;
            }

            .hero-trust {
                flex-direction: column;
                gap: 10px;
            }

            .whatsapp-float {
                bottom: 80px;
            }
        }

        @media (max-width: 480px) {
            .trust-grid {
                grid-template-columns: 1fr;
            }

            .districts-grid {
                grid-template-columns: 1fr;
            }

            .pricing-table th,
            .pricing-table td {
                padding: 12px 14px;
                font-size: 14px;
            }
        }
    

/* ===== BLOCK ===== */


    .zb-chat-btn {
        position: fixed;
        bottom: 90px;
        right: 25px;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
        color: #fff;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 24px rgba(0,82,204,0.45);
        z-index: 9998;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .zb-chat-btn:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(0,82,204,0.55); }
    .zb-chat-btn.active { display: none; }

    .zb-chat-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 22px;
        height: 22px;
        background: #e63939;
        border-radius: 50%;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        animation: zb-pulse 2s infinite;
    }
    @keyframes zb-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
    }

    .zb-chat-bubble {
        position: fixed;
        bottom: 162px;
        right: 25px;
        background: #fff;
        color: #1a1a1a;
        padding: 12px 18px;
        border-radius: 16px 16px 4px 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        font-family: 'Inter', system-ui, sans-serif;
        font-size: 14px;
        font-weight: 500;
        max-width: 260px;
        z-index: 9997;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s, transform 0.4s;
        pointer-events: none;
    }
    .zb-chat-bubble.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .zb-chat-bubble::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 24px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #fff;
    }

    .zb-chat-window {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 380px;
        height: 560px;
        max-height: 85vh;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 12px 48px rgba(0,0,0,0.2);
        z-index: 9999;
        display: none;
        flex-direction: column;
        overflow: hidden;
        font-family: 'Inter', system-ui, sans-serif;
    }
    .zb-chat-window.open { display: flex; }

    .zb-chat-header {
        background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
        color: #fff;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }
    .zb-chat-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }
    .zb-chat-header-info h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
    }
    .zb-chat-header-info p {
        margin: 2px 0 0;
        font-size: 12px;
        opacity: 0.85;
    }
    .zb-chat-status {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #4ade80;
        border-radius: 50%;
        margin-right: 4px;
    }
    .zb-chat-close {
        margin-left: auto;
        background: rgba(255,255,255,0.2);
        border: none;
        color: #fff;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    .zb-chat-close:hover { background: rgba(255,255,255,0.35); }

    .zb-chat-messages {
        flex: 1;
        overflow-y: auto;
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: #f0f4f8;
    }
    .zb-chat-messages::-webkit-scrollbar { width: 4px; }
    .zb-chat-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

    .zb-msg {
        max-width: 85%;
        padding: 12px 16px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.5;
        animation: zb-fadeIn 0.3s ease;
    }
    @keyframes zb-fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    .zb-msg-bot {
        background: #fff;
        color: #1a1a1a;
        align-self: flex-start;
        border-bottom-left-radius: 4px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .zb-msg-user {
        background: #0052cc;
        color: #fff;
        align-self: flex-end;
        border-bottom-right-radius: 4px;
    }
    .zb-msg-bot a {
        color: #0052cc;
        font-weight: 600;
        text-decoration: none;
    }
    .zb-msg-bot a:hover { text-decoration: underline; }
    .zb-msg-bot .zb-phone-link {
        display: inline-block;
        background: #e63939;
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        margin-top: 8px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
    }
    .zb-msg-bot .zb-phone-link:hover { background: #cc2e2e; text-decoration: none; }

    .zb-quick-replies {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }
    .zb-quick-btn {
        background: #e8f0fe;
        color: #0052cc;
        border: 1px solid #b8d4fe;
        border-radius: 20px;
        padding: 7px 14px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        font-family: 'Inter', system-ui, sans-serif;
    }
    .zb-quick-btn:hover { background: #0052cc; color: #fff; border-color: #0052cc; }

    .zb-typing {
        align-self: flex-start;
        background: #fff;
        padding: 12px 20px;
        border-radius: 16px;
        border-bottom-left-radius: 4px;
        display: flex;
        gap: 4px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .zb-typing span {
        width: 8px;
        height: 8px;
        background: #aaa;
        border-radius: 50%;
        animation: zb-typeDot 1.4s infinite;
    }
    .zb-typing span:nth-child(2) { animation-delay: 0.2s; }
    .zb-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes zb-typeDot {
        0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
        30% { transform: translateY(-6px); opacity: 1; }
    }

    .zb-chat-input-area {
        padding: 12px 16px;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        display: flex;
        gap: 8px;
        flex-shrink: 0;
    }
    .zb-chat-input {
        flex: 1;
        border: 1px solid #d1d5db;
        border-radius: 24px;
        padding: 10px 18px;
        font-size: 14px;
        outline: none;
        font-family: 'Inter', system-ui, sans-serif;
        transition: border-color 0.2s;
    }
    .zb-chat-input:focus { border-color: #0052cc; }
    .zb-chat-input::placeholder { color: #9ca3af; }
    .zb-chat-send {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #0052cc;
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: background 0.2s;
        flex-shrink: 0;
    }
    .zb-chat-send:hover { background: #003d99; }

    @media (max-width: 480px) {
        .zb-chat-window {
            width: calc(100vw - 16px);
            height: calc(100vh - 16px);
            max-height: calc(100vh - 16px);
            bottom: 8px;
            right: 8px;
            border-radius: 16px;
        }
        .zb-chat-btn { bottom: 80px; right: 16px; width: 56px; height: 56px; font-size: 24px; }
        .zb-chat-bubble { right: 16px; bottom: 144px; }
    }

        /* ===== KALKULATOR WYCENY ===== */
        .calc-section {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--white) 0%, #f0f4f8 100%);
        }
        .calc-card {
            max-width: 720px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            padding: 40px 36px;
        }
        .calc-group {
            margin-bottom: 32px;
        }
        .calc-group:last-of-type {
            margin-bottom: 36px;
        }
        .calc-label {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        .calc-services {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .calc-svc {
            padding: 10px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: var(--white);
            color: var(--dark);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Inter', system-ui, sans-serif;
        }
        .calc-svc:hover {
            border-color: var(--primary);
            background: #f0f5ff;
        }
        .calc-svc.active {
            border-color: var(--primary);
            background: var(--primary);
            color: var(--white);
        }
        .calc-time-btns {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .calc-time {
            flex: 1;
            min-width: 140px;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: var(--white);
            color: var(--dark);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
            font-family: 'Inter', system-ui, sans-serif;
        }
        .calc-time small {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: #64748b;
            margin-top: 2px;
        }
        .calc-time:hover {
            border-color: var(--primary);
            background: #f0f5ff;
        }
        .calc-time.active {
            border-color: var(--primary);
            background: var(--primary);
            color: var(--white);
        }
        .calc-time.active small {
            color: rgba(255,255,255,0.8);
        }
        .calc-slider-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .calc-range {
            flex: 1;
            -webkit-appearance: none;
            appearance: none;
            height: 8px;
            border-radius: 4px;
            background: #e2e8f0;
            outline: none;
        }
        .calc-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,82,204,0.3);
            transition: transform 0.15s;
        }
        .calc-range::-webkit-slider-thumb:hover {
            transform: scale(1.15);
        }
        .calc-range::-moz-range-thumb {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 8px rgba(0,82,204,0.3);
        }
        .calc-range-val {
            min-width: 100px;
            text-align: right;
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
        }
        .calc-range-labels {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #94a3b8;
            margin-top: 4px;
        }

        /* Result */
        .calc-result {
            background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
            border: 2px solid #b8d4fe;
            border-radius: 14px;
            padding: 28px 24px;
            text-align: center;
        }
        .calc-result-top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }
        .calc-result-label {
            font-size: 16px;
            color: #475569;
            font-weight: 500;
        }
        .calc-result-price {
            font-size: 36px;
            font-weight: 900;
            color: var(--primary);
            transition: all 0.3s;
        }
        .calc-result-price.bump {
            transform: scale(1.08);
        }
        .calc-result-detail {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 12px;
        }
        .calc-result-note {
            font-size: 12px;
            color: #94a3b8;
            margin-bottom: 20px;
        }
        .calc-result-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .calc-phone-btn {
            font-size: 16px !important;
            padding: 14px 28px !important;
        }
        .calc-wa-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 14px 24px;
            background: #25d366;
            color: var(--white);
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .calc-wa-btn:hover {
            background: #1fb855;
        }

        @media (max-width: 768px) {
            .calc-card {
                padding: 24px 18px;
            }
            .calc-services {
                flex-direction: column;
            }
            .calc-svc {
                width: 100%;
                text-align: center;
            }
            .calc-time-btns {
                flex-direction: column;
            }
            .calc-result-top {
                flex-direction: column;
                gap: 4px;
            }
            .calc-result-price {
                font-size: 30px;
            }
            .calc-result-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .calc-phone-btn, .calc-wa-btn {
                text-align: center;
                justify-content: center;
            }
        }

    
/* ===== SUBPAGE STYLES ===== */
.sub-hero {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: #fff;
    padding: 100px 0 60px;
    margin-top: 0;
    text-align: center;
}
.sub-hero .container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.breadcrumb {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}
.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.sub-hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.15;
    color: #fff;
}
.sub-hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    opacity: 0.95;
    margin: 0 auto 28px;
    max-width: 760px;
    line-height: 1.5;
}
.sub-hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sub-hero-cta .btn-primary, .sub-hero-cta a[href^="tel:"] {
    background: #e63939;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
    transition: background 0.2s;
}
.sub-hero-cta .btn-primary:hover { background: #c62828; }
.sub-hero-cta .btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
    transition: background 0.2s;
}
.sub-hero-cta .btn-whatsapp:hover { background: #1fb855; }

/* Content */
.content-section {
    padding: 60px 0;
    background: #fff;
}
.content-section .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-section h2 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 40px 0 18px;
    line-height: 1.25;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #212121;
    margin: 32px 0 12px;
}
.content-section p {
    font-size: 16px;
    color: #424242;
    line-height: 1.7;
    margin: 0 0 16px;
}
.content-section ul, .content-section ol {
    margin: 0 0 20px 20px;
    padding: 0;
}
.content-section li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #424242;
    line-height: 1.65;
}
.content-section strong { color: #1a1a1a; font-weight: 700; }
.content-section a { color: #0052cc; font-weight: 600; text-decoration: none; }
.content-section a:hover { text-decoration: underline; }
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.content-section th {
    background: #0052cc;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}
.content-section td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}
.content-section tr:last-child td { border-bottom: 0; }
.content-section tr:nth-child(even) td { background: #f8f9fa; }
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #0052cc;
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}
.info-box strong { color: #003d99; }

.cta-banner {
    background: linear-gradient(135deg, #e63939 0%, #c62828 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0 0;
}
.cta-banner h2 {
    color: #fff !important;
    font-size: clamp(22px, 3vw, 28px) !important;
    margin: 0 0 12px !important;
}
.cta-banner p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 17px !important;
    margin: 0 0 20px !important;
}
.cta-banner a {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #c62828 !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.cta-banner a:hover { transform: translateY(-2px); }

.related-services {
    background: #f5f5f5;
    padding: 50px 0;
}
.related-services .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.related-services h2 {
    text-align: center;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 800;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}
.related-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 18px;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,82,204,0.12);
}
.related-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #0052cc;
}
.related-card span {
    font-size: 14px;
    color: #757575;
}
