<style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            background: #f8fafc;
            color: #1f2933;
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1040px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* TOP BANNER */
        .top-banner {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff9a9e 100%);
            color: #fff;
            font-size: 14px;
        }

        .top-banner-inner {
            max-width: 1040px;
            margin: 0 auto;
            padding: 8px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .top-banner span {
            font-weight: 500;
        }

        .top-banner a {
            font-weight: 600;
            text-decoration: underline;
            font-size: 13px;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: #fff;
            box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
        }

        .header-inner {
            max-width: 1040px;
            margin: 0 auto;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo {
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #7c3aed;
        }

        nav {
            display: flex;
            gap: 18px;
            font-size: 14px;
            font-weight: 600;
        }

        nav a {
            color: #4b5563;
        }

        nav a:hover {
            color: #7c3aed;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #4b5563;
        }

        .header-cta strong {
            font-size: 15px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-icon-link {
            width: 36px;
            height: 36px;
            background: #f1f5f9;
            color: #4b5563;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .header-icon-link:hover {
            background: #7c3aed;
            color: #fff;
            transform: translateY(-1px);
        }

        .header-icon-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .btn {
            padding: 10px 22px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            transition: 0.2s;
            display: inline-block;
        }

        .btn-primary {
            background: #7c3aed;
            color: #fff;
        }

        .btn-primary:hover {
            background: #5b23cf;
            transform: translateY(-1px);
        }

        .btn-outline {
            background: #fff;
            color: #4b5563;
            border: 1px solid #e5e7eb;
        }

        .btn-outline:hover {
            background: #f9fafb;
            transform: translateY(-1px);
        }

        /* HERO */
        .hero-wrapper {
            background: #f9e8f3;
            border-radius: 28px;
            margin: 24px auto 40px;
            max-width: 1040px;
            box-shadow: 0 20px 60px rgba(248, 187, 208, 0.5);
        }

        .hero {
            padding: 40px 32px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .hero-text {
            max-width: 520px;
        }

        .hero-label {
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #9b6ba8;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .hero-text h1 {
            font-size: 32px;
            line-height: 1.25;
            color: #2b2142;
            margin-bottom: 14px;
            font-weight: 800;
        }

        .hero-sub {
            font-size: 15px;
            color: #4b5563;
            margin-bottom: 8px;
        }

        .hero-desc {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 24px;
            max-width: 460px;
        }

        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
            font-size: 12px;
        }

        .hero-badge {
            padding: 4px 10px;
            border-radius: 999px;
            background: #fef3c7;
            color: #92400e;
            font-weight: 600;
        }

        .hero-badge.secondary {
            background: #e0e7ff;
            color: #3730a3;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-image img {
            max-width: 420px;
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
            object-fit: contain;
        }

        /* SECTION BASE */
        section {
            padding: 40px 0;
        }

        .section-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .section-label {
            font-size: 12px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #9b6ba8;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .section-sub {
            font-size: 14px;
            color: #6b7280;
            max-width: 520px;
            margin-bottom: 24px;
        }

        /* SERVICES */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
        }

        .service-card {
            border-radius: 18px;
            padding: 18px 16px;
            background: #fdf2ff;
            position: relative;
            overflow: hidden;
            min-height: 130px;
        }

        .service-card:nth-child(2n) {
            background: #e0f2fe;
        }

        .service-card:nth-child(3n) {
            background: #fee2e2;
        }

        .service-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #111827;
        }

        .service-text {
            font-size: 13px;
            color: #4b5563;
            max-width: 220px;
        }

        .service-icon {
            position: absolute;
            right: 12px;
            bottom: 10px;
            font-size: 30px;
            opacity: 0.85;
        }

        .hidden-service {
            display: none;
        }

        .services-toggle-wrap {
            text-align: center;
            margin-top: 18px;
        }

        /* WHY US */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 18px;
        }

        .why-card {
            border-radius: 18px;
            padding: 18px 18px 16px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
        }

        .why-icon {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            background: #fee2ff;
            font-size: 18px;
        }

        .why-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .why-text {
            font-size: 13px;
            color: #6b7280;
        }

        /* ESTIMATE / FORM */
        .estimate-wrapper {
            background: #e5f0ff;
            padding: 40px 0 60px;
        }

        .estimate {
            text-align: left;
        }

        .estimate-card {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            padding: 24px 24px 28px;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
        }

        .estimate-card .section-sub {
            max-width: 100%;
        }

        .estimate-form {
            margin-top: 18px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px 20px;
            max-width: 100%;
        }

        .form-group {
            font-size: 13px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #4b5563;
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea,
        .form-group-full input,
        .form-group-full select,
        .form-group-full textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 999px;
            border: none;
            font-size: 14px;
            outline: none;
            background: #f5f5ff;
            box-shadow: 0 0 0 1px rgba(124, 58, 237, 0);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .form-group textarea,
        .form-group-full textarea {
            min-height: 52px;
            resize: none;
            border-radius: 18px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder,
        .form-group-full input::placeholder,
        .form-group-full textarea::placeholder {
            color: #9ca3af;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus,
        .form-group-full input:focus,
        .form-group-full select:focus,
        .form-group-full textarea:focus {
            border-color: #7c3aed;
            background: #ffffff;
            box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.18);
        }

        .form-group-full {
            grid-column: 1 / -1;
        }

        .form-note {
            font-size: 11px;
            color: #6b7280;
            margin-top: 4px;
        }

        .estimate-actions {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 4px;
        }

        .estimate-actions .btn {
            padding: 12px 32px;
            font-size: 15px;
        }

        /* ABOUT / MAP */
        .two-column {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 24px;
            align-items: start;
        }

        .gta-map-wrapper img {
            width: 100%;
            border-radius: 24px;
            display: block;
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
        }

        /* OFFERS */
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
        }

        .offer-card {
            border-radius: 18px;
            padding: 18px 18px 20px;
            background: #fef3c7;
        }

        .offer-card:nth-child(2) {
            background: #e0f2fe;
        }

        .offer-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 6px;
        }

        .offer-text {
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 10px;
        }

        .offer-note {
            font-size: 11px;
            color: #6b7280;
            margin-bottom: 10px;
        }

        /* REVIEWS */
        .reviews-wrapper {
            background: #fdf2ff;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
        }

        .review-card {
            border-radius: 18px;
            padding: 18px 18px 16px;
            background: #fff;
            box-shadow: 0 6px 20px rgba(148, 163, 184, 0.25);
            font-size: 13px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            background: linear-gradient(135deg, #ff9a9e, #fecfef);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .review-name {
            font-weight: 700;
            font-size: 14px;
        }

        .review-service {
            font-size: 12px;
            color: #6b7280;
        }

        .review-text {
            font-size: 13px;
            color: #4b5563;
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 16px;
        }

        .faq-item {
            border-radius: 16px;
            background: #f4f7fc;
            overflow: hidden;
            border: none;
            box-shadow: 0 0 0 1px #edf2f7;
            transition: box-shadow 0.2s ease, background 0.2s ease;
        }

        .faq-item.active {
            background: #eef2ff;
            box-shadow: 0 8px 26px rgba(148, 163, 184, 0.35);
        }

        .faq-header {
            width: 100%;
            padding: 16px 20px;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font: inherit;
        }

        .faq-q {
            font-weight: 600;
            font-size: 15px;
            color: #111827;
            text-align: left;
            padding-right: 16px;
        }

        .faq-icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 1px #e5e7eb;
        }

        .faq-icon {
            font-size: 22px;
            line-height: 1;
            color: #6366f1;
            transition: transform 0.2s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.25s ease, opacity 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
            font-size: 14px;
            color: #4b5563;
        }

        .faq-item.active .faq-answer {
            padding-top: 0;
            padding-bottom: 16px;
            max-height: 260px;
            opacity: 1;
        }

        .faq-answer p {
            margin-top: 4px;
        }

        /* FAQ TOP ROW */
        .faq-header-row {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
            gap: 24px;
            align-items: center;
            margin-bottom: 28px;
        }

        .faq-illustration img {
            width: 100%;
            display: block;
            border-radius: 24px;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
        }

        /* PRICING */
        #pricing {
            padding: 48px 0;
            background: #ffffff;
        }

        .pricing-tabs {
            max-width: 900px;
            margin: 8px auto 28px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid #e5e7eb;
            overflow: hidden;
            background: #f9fafb;
        }

        .pricing-tab {
            flex: 1;
            padding: 12px 18px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
            border: none;
            background: transparent;
            cursor: pointer;
            color: #6b7280;
            transition: background 0.2s ease, color 0.2s ease;
            position: relative; 
            border-radius: 999px; /* Ensure buttons have rounded corners for the shadow */
        }

        /* Sequential Purple Contour Highlight */
        .pricing-tab {
            animation: border-pulse 5s infinite;
        }

        /* Staggered delays for 5 tabs */
        .pricing-tab:nth-child(1) { animation-delay: 0s; }
        .pricing-tab:nth-child(2) { animation-delay: 0.5s; }
        .pricing-tab:nth-child(3) { animation-delay: 1.0s; }
        .pricing-tab:nth-child(4) { animation-delay: 1.5s; }
        .pricing-tab:nth-child(5) { animation-delay: 2.0s; }

        @keyframes border-pulse {
            0% { box-shadow: 0 0 0 0px rgba(124, 58, 237, 0); }
            5% { box-shadow: 0 0 0 2px rgba(124, 58, 237, 1); }
            15% { box-shadow: 0 0 0 0px rgba(124, 58, 237, 0); }
            100% { box-shadow: 0 0 0 0px rgba(124, 58, 237, 0); }
        }

        /* Don't pulse the active one since it's already highlighted */
        .pricing-tab.active {
            animation: none;
        }

        @media (max-width: 768px) {
            .pricing-tabs {
                border-radius: 18px;
                flex-direction: column;
            }
            .pricing-tab {
                border-bottom: 1px solid #e5e7eb;
                width: 100%;
            }
            .pricing-tab:last-child {
                border-bottom: none;
            }
            /* Vertical shimmer for mobile individual tabs */
            .pricing-tab::after {
                left: 0;
                top: -150%;
                width: 100%;
                height: 150%;
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.5) 50%,
                    rgba(255, 255, 255, 0) 100%
                );
                transform: skewY(-10deg);
                animation-name: tab-shimmer-vertical;
            }
        }

        @keyframes tab-shimmer-vertical {
            0% { top: -150%; }
            20% { top: 150%; }
            100% { top: 150%; }
        }

        .pricing-tab {
            flex: 1;
            padding: 12px 18px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
            border: none;
            background: transparent;
            cursor: pointer;
            color: #6b7280;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .pricing-tab.active {
            background: #7c3aed;
            color: #ffffff;
        }

        .pricing-panel {
            display: none;
        }

        .pricing-panel.active {
            display: block;
        }

        .pricing-grid {
            max-width: 760px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }

        .pricing-col-title {
            font-size: 14px;
            font-weight: 600;
            color: #9ca3af;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .pricing-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 15px;
        }

        .pricing-name {
            color: #111827;
        }

        /* НОВОЕ */
        .pricing-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
        }

        .pricing-price {
            color: #7c3aed;
            font-weight: 600;
        }

        .pricing-price-addon {
            font-size: 12px;
            color: #6b7280;
        }

        .pricing-price {
            color: #7c3aed;
            font-weight: 600;
        }

        .pricing-note {
            max-width: 760px;
            margin: 18px auto 0;
            font-size: 13px;
            color: #6b7280;
            text-align: left;
        }

        /* Lists with checkmarks for Hourly section */
        .pricing-list {
            list-style: none;
            margin-top: 16px;
        }

        .pricing-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
            font-size: 16px;
            color: #111827;
        }

        .pricing-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: #7c3aed;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        /* Hourly pricing block */
        .pricing-hourly {
            max-width: 760px;
            margin: 24px auto 0;
            padding: 16px 18px 18px;
            border-radius: 18px;
            background: #fff7ed;
            border: 1px solid #fed7aa;
            color: #7c2d12;
            font-size: 14px;
        }

        .pricing-hourly-title {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 4px;
            color: #c05621;
        }

        .pricing-hourly-sub {
            font-size: 12px;
            color: #9a3412;
            margin-bottom: 8px;
        }

        .pricing-hourly-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .pricing-hourly-list li {
            margin-bottom: 4px;
        }

        .pricing-hourly-list strong {
            font-weight: 700;
        }

        .pricing-cta {
            text-align: center;
            margin-top: 26px;
        }

        /* FOOTER */
        footer {
            background: #111827;
            color: #e5e7eb;
            padding: 24px 0 16px;
            font-size: 13px;
            margin-top: 16px;
        }

        .footer-inner {
            max-width: 1040px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: space-between;
        }

        .footer-col-title {
            font-weight: 700;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 12px;
            font-size: 12px;
            color: #9ca3af;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #fff;
        }

        .footer-social a:hover {
            background: #ff6b9d;
            transform: translateY(-2px);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* RESPONSIVE */
        @media (max-width: 960px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 8px;
            }

            nav {
                display: none;
            }

            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image img {
                max-width: 320px;
            }

            .estimate-form {
                grid-template-columns: 1fr;
            }

            .two-column {
                grid-template-columns: 1fr;
            }

            .faq-header-row {
                grid-template-columns: 1fr;
            }

            .hero-wrapper {
                margin: 16px auto 32px;
            }
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .header-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            text-decoration: none;
            color: #4b5563;
        }

        .header-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .header-link.phone {
            color: #7c3aed;
            /* фирменный фиолетовый */
        }

        .header-link.whatsapp {
            color: #25d366;
            /* официальный WhatsApp */
        }

        .header-link:hover {
            opacity: 0.85;
        }

        /* SERVICE AREA (POLISHED) */
        .service-area {
            padding: 0 0 34px;
        }

        .service-area .container {
            padding: 0 32px;
        }

        .service-area-card {
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 18px 18px 16px;
            box-shadow: 0 16px 44px rgba(43, 33, 66, 0.12);
            max-width: 920px;
        }

        .service-area-head h3 {
            font-size: 16px;
            font-weight: 800;
            color: #2b2142;
            margin-bottom: 6px;
        }

        .service-area-head p {
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 12px;
        }

        .service-area-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .service-area-chips .chip {
            display: inline-flex;
            align-items: center;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(124, 58, 237, 0.12);
            color: #2b2142;
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            white-space: nowrap;
        }

        .service-area-foot {
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 13px;
            color: #6b7280;
        }

        .service-area-wa {
            color: #7c3aed;
            font-weight: 800;
            text-decoration: underline;
        }

        @media (max-width: 960px) {
            .service-area .container {
                padding: 0 16px;
            }

            .service-area-card {
                margin: 0 auto;
            }

            .service-area-chips {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 6px;
                -webkit-overflow-scrolling: touch;
            }

            .service-area-chips::-webkit-scrollbar {
                height: 6px;
            }

            .service-area-chips::-webkit-scrollbar-thumb {
                background: rgba(124, 58, 237, 0.22);
                border-radius: 999px;
            }
        }

        /* SERVICE AREA BUTTONS */
        .service-area-actions {
            margin-top: 14px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            transition: transform .15s ease, box-shadow .15s ease;
        }

        .service-btn-call {
            background: #ffffff;
            color: #2b2142;
            border: 1px solid rgba(124, 58, 237, 0.25);
        }

        .service-btn-quote {
            background: linear-gradient(135deg, #7c3aed, #9f7aea);
            color: #ffffff;
            box-shadow: 0 10px 26px rgba(124, 58, 237, 0.35);
        }

        .service-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
        }

        /* UNIFIED CTA STYLE */
        .service-area-actions {
            margin-top: 16px;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, #7c3aed, #9f7aea);
            box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
            transition: transform .15s ease, box-shadow .15s ease;
        }

        .service-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 36px rgba(124, 58, 237, 0.45);
        }

        .footer-note {
            font-size: 13px;
            opacity: 0.7;
            margin-top: 6px;
        }

        /* PRICING: disabled column (temporarily unavailable) */
        .pricing-disabled {
            opacity: 0.55;
        }

        .pricing-disabled .pricing-col-title {
            color: #9ca3af;
        }

        .pricing-disabled .pricing-row {
            border-bottom-color: rgba(229, 231, 235, 0.6);
        }

        .pricing-disabled .pricing-name,
        .pricing-disabled .pricing-price,
        .pricing-disabled .pricing-price-addon {
            color: #9ca3af !important;
        }

        .pricing-disabled .pricing-price-addon {
            opacity: 0.9;
        }

        .pricing-disabled .pricing-unavailable {
            opacity: 1;
            color: #6b7280;
            font-size: 13px;
            margin: 6px 0 10px;
        }

        /* PHOTO CAROUSEL */
        .photo-carousel {
            background: #ffffff;
        }

        .carousel-wrap {
            position: relative;
            margin-top: 14px;
        }

        .carousel-track {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding: 6px 2px 10px;
        }

        .carousel-track::-webkit-scrollbar {
            height: 8px;
        }

        .carousel-track::-webkit-scrollbar-thumb {
            background: rgba(124, 58, 237, 0.22);
            border-radius: 999px;
        }

        .carousel-item {
            flex: 0 0 auto;
            width: 320px;
            height: 210px;
            border-radius: 18px;
            overflow: hidden;
            scroll-snap-align: start;
            box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
            background: #f3f4f6;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .carousel-hint {
            font-size: 12px;
            color: #6b7280;
        }

        .carousel-btns {
            display: flex;
            gap: 10px;
        }

        .carousel-btn {
            width: 44px;
            height: 44px;
            border-radius: 999px;
            border: 1px solid #e5e7eb;
            background: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #2b2142;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
        }

        .carousel-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
        }

        @media (max-width: 960px) {
            .carousel-item {
                width: 78vw;
                max-width: 360px;
                height: 220px;
            }
        }

        /* GALLERY LIGHTBOX + DOT NAV */
        .carousel-dots {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 1px solid rgba(124, 58, 237, .35);
            background: rgba(124, 58, 237, .12);
            cursor: pointer;
            transition: transform .15s ease, background .15s ease, border-color .15s ease;
        }

        .carousel-dot.active {
            background: #7c3aed;
            border-color: #7c3aed;
            transform: scale(1.15);
        }

        .gallery-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(17, 24, 39, .82);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 18px;
        }

        .gallery-lightbox.active {
            display: flex;
        }

        .lightbox-card {
            width: min(980px, 100%);
            background: #0b1220;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
            position: relative;
        }

        .lightbox-img {
            width: 100%;
            height: min(72vh, 680px);
            object-fit: contain;
            background: #0b1220;
            display: block;
        }

        .lightbox-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 12px;
            color: #e5e7eb;
            font-size: 13px;
            background: rgba(15, 23, 42, .75);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .lightbox-caption {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            opacity: .92;
        }

        .lightbox-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .lightbox-btn {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            color: #fff;
            cursor: pointer;
            font-size: 18px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .15s ease, background .15s ease;
        }

        .lightbox-btn:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .14);
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 44px;
            height: 44px;
        }

        @media (max-width: 960px) {
            .carousel-controls {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .carousel-btns {
                justify-content: space-between;
            }

            .lightbox-img {
                height: 62vh;
            }

            .lightbox-caption {
                max-width: 58vw;
            }
        }
        .blog-inline-link {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.blog-inline-link:hover {
    opacity: 0.8;
}
    </style>