        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: #2d2d2d;
            background-color: #faf8f5;
            line-height: 1.6;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .t199__menu-item {
            color: #8b2ba3 !important;
        }
 .hero {
    padding: 140px 0 70px;
    border-radius: 0 0 40px 40px;
     background-image: url(https://optim.tildacdn.com/tild3461-3464-4932-b036-666532616666/-/cover/297x654/center/center/-/format/webp/2026-06-16_01-44-04_.png.webp); 
    background-color: #b2e5e8;
    background-repeat: no-repeat;
    background-position: 60vw bottom;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hero-content {
            flex: 1 1 500px;
        }

        .hero-content h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            color: #1f1f1f;
            margin-bottom: 20px;
        }
        .hero-content h1 span {
            color: #8b2ba3;
        }

        .hero-sub {
            font-size: 18px;
            font-weight: 400;
            color: #444;
            margin-bottom: 25px;
        }

        .hero-features {
            margin-bottom: 30px;
        }

        .hero-features li {
            list-style: none;
            font-size: 16px;
            color: #333;
        }
        .hero-features li i {
            color: #8b2ba3;
            margin-right: 10px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .btn-primary {
            display: inline-block;
            background: #8b2ba3;
            color: #fff;
            padding: 16px 40px;
            border-radius: 40px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-primary:hover {
            background: #db50a3;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent;
            color: #8b2ba3;
            padding: 16px 30px;
            border-radius: 40px;
            font-size: 18px;
            font-weight: 600;
            border: 2px solid #8b2ba3;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-secondary:hover {
            background: #8b2ba3;
            color: #fff;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .hero-stats div {
            text-align: center;
        }

        .hero-stats .number {
            font-size: 32px;
            font-weight: 800;
            color: #8b2ba3;
        }

        .hero-stats .label {
            font-size: 14px;
            color: #555;
        }

        .hero-image {
            flex: 1 1 400px;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* ===== БЛОК ЦИФР ===== */
        .numbers-block {
            background: #fff;
            padding: 50px 0;
            margin: 30px auto;
            border-radius: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        }

        .numbers-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            text-align: center;
        }

        .numbers-grid .item {
            flex: 1 1 150px;
        }

        .numbers-grid .num {
            font-size: 40px;
            font-weight: 800;
            color: #8b2ba3;
        }

        .numbers-grid .desc {
            font-size: 16px;
            color: #555;
        }

        /* ===== ПРЕИМУЩЕСТВА ===== */
        .advantages {
            padding: 60px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title span {
            color: #8b2ba3;
        }

        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .adv-item {
            background: #fff;
            padding: 30px 20px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            text-align: center;
            transition: 0.3s;
        }
        .adv-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

        .adv-item i {
            font-size: 40px;
            color: #8b2ba3;
            margin-bottom: 15px;
        }

        .adv-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .adv-item p {
            color: #666;
            font-size: 15px;
        }

        /* ===== УСЛУГИ ===== */
        .services {
            background: #fff;
            padding: 60px 0;
            border-radius: 30px 30px 0 0;
        }

        .service-card {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
            background: #faf8f5;
            border-radius: 24px;
            padding: 30px;
        }

        .service-card:last-child {
            margin-bottom: 0;
        }

        .service-img {
            flex: 1 1 280px;
        }
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .service-info {
            flex: 2 1 400px;
        }

        .service-info h3 {
            font-size: 28px;
            color: #8b2ba3;
            margin-bottom: 15px;
        }

        .service-info p {
            margin-bottom: 12px;
            color: #444;
        }

        .service-info ul {
            list-style: none;
            margin: 15px 0;
        }

        .service-info ul li {
            padding: 5px 0;
            padding-left: 28px;
            position: relative;
        }

        .service-info ul li::before {
            content: "✓";
            color: #8b2ba3;
            font-weight: 700;
            position: absolute;
            left: 0;
        }

        .service-price {
            font-size: 22px;
            font-weight: 700;
            color: #8b2ba3;
            margin-top: 15px;
        }

        .service-price small {
            font-weight: 400;
            color: #777;
            font-size: 16px;
        }
        .services-price h2 {
            margin-bottom:0;
        }
        /* ===== О НАС / ИСТОРИЯ ===== */
        .about {
            padding: 60px 0;
        }

        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            flex: 1 1 400px;
        }
        .about-text h2 {
            font-size: 34px;
            margin-bottom: 20px;
        }
        .about-text p {
            margin-bottom: 15px;
            color: #444;
        }

        .about-image {
            flex: 1 1 300px;
        }
        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

        /* ===== ФОТО ДО/ПОСЛЕ ===== */
        .gallery {
            background: #fff;
            padding: 60px 0;
            border-radius: 30px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .gallery-item .label {
            background: #f3f3f3;
            padding: 8px;
            text-align: center;
            font-size: 14px;
            color: #555;
        }

        /* ===== ОТЗЫВЫ ===== */
        .reviews {
            padding: 60px 0;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .review-item {
            background: #fff;
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        }

        .review-item .stars {
            color: #f5b342;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .review-item p {
            font-style: italic;
            color: #444;
        }

        .review-item .author {
            font-weight: 600;
            margin-top: 15px;
            color: #2d2d2d;
        }

        /* ===== FAQ ===== */
        .faq {
            background: #faf8f5;
            padding: 60px 0;
            border-radius: 30px;
        }

        .faq-item {
            background: #fff;
            margin-bottom: 12px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }

        .faq-question {
            padding: 18px 25px;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            transition: 0.2s;
        }
        .faq-question:hover {
            background: rgb(178 229 232 / 30%);
        }
        .faq-question i {
            color: #8b2ba3;
            transition: 0.3s;
        }

        .faq-answer {
            padding: 0 25px 20px;
            color: #555;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ===== АКЦИИ ===== */
        .promo {
            padding: 60px 0;
        }

        .promo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .promo-card {
            background: #f7fbfc;
            padding: 30px 25px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(196, 90, 122, 0.12);
            transition: 0.3s;
            border: 1px solid rgba(196, 90, 122, 0.1);
        }
        .promo-card:hover {
            transform: scale(1.02);
        }

        .promo-card .badge {
            background: #b2e5e8;
            display: inline-block;
            padding: 4px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .promo-card h4 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .promo-card p {
            color: #555;
            margin-bottom: 20px;
        }

        .promo-card .btn-sm {
            background: #8b2ba3;
            color: #fff;
            padding: 6px 25px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .promo-card .btn-sm:hover {
            background: #db50a3;
        }

        /* ===== ЛИД-МАГНИТЫ / ФОРМЫ ===== */
        .lead-magnets {
            background: #fff;
            padding: 60px 0;
            border-radius: 30px;
        }

        .lead-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .lead-item {
            background: #faf8f5;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
        }

        .lead-item i {
            font-size: 36px;
            color: #8b2ba3;
            margin-bottom: 15px;
        }

        .lead-item h4 {
            margin-bottom: 10px;
        }

        .lead-item .btn-lead {
            display: inline-block;
            background: #8b2ba3;
            color: #fff;
            border: none;
            padding: 6px 25px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 15px;
            cursor: pointer;
            transition: 0.3s;
        }
        .lead-item .btn-lead:hover {
            background: #db50a3;
        }

        /* ===== КОНТАКТЫ ===== */
        .contacts {
            padding: 60px 0;
        }

        .contacts-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contacts-info {
            flex: 1 1 300px;
        }
        .contacts-info p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .contacts-info i {
            width: 30px;
            color: #8b2ba3;
        }

        .contacts-map {
            flex: 2 1 400px;
            height: 300px;
        }

        /* ===== ПОДВАЛ ===== */
        .bottom-footer {
            background: #2d2d2d;
            color: #ccc;
            padding: 30px 0;
            text-align: center;
            border-radius: 30px 30px 0 0;
        }

        .bottom-footer a {
            color: #8b2ba3;
        }
                .masters {
            padding: 70px 0 80px;
            background: #ffffff;
            border-radius: 40px;
        }

        .masters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }

        .master-card {
            background: #f7fbfc;
            border-radius: 32px;
            padding: 30px 30px 40px;
            text-align: center;
            border: 1px solid #e2f0f2;
            transition: 0.3s;
        }
        .master-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(178, 229, 232, 0.12);
        }

        .master-card img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid #b2e5e8;
            box-shadow: 0 6px 18px rgba(0,0,0,0.04);
        }

        .master-card h3 {
            font-size: 26px;
            color: #152024;
            margin-bottom: 8px;
        }

        .master-card .position {
            font-size: 18px;
            color: #2b9ca8;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .master-card .desc {
            font-size: 17px;
            color: #3d555e;
            margin-bottom: 15px;
        }

        .master-card .experience {
            font-size: 18px;
            font-weight: 600;
            color: #1e2a2f;
            background: #e7f7f8;
            display: inline-block;
            padding: 6px 24px;
            border-radius: 40px;
        }

        /* ===== АДАПТИВ ===== */
        @media (max-width: 991px) {
            .hero {
                background-image: url(https://optim.tildacdn.com/tild3333-6162-4363-b963-363062393937/-/cover/700x1158/center/center/-/format/webp/2026-06-16_01-44-04_.png.webp);
                background-position: bottom;
                background-size: contain;
                padding-top: 100px;
                padding-bottom: 130vw;
            }
        }
        @media (max-width: 768px) {

            .t667__tile {
                    width: 100%;
    padding: 0;
    margin-top: 10px;
            }
            .services-price {
    padding-top: 0;
    padding-bottom: 20px;
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .header-inner {
                flex-direction: column;
                gap: 15px;
            }
            .hero-stats {
                justify-content: center;
            }
            .numbers-block {
                padding: 30px 5px;
            }
            .numbers-grid {
                gap: 10px;
            }
            .numbers-grid .item {
                flex-basis: 47%;
            }
            .numbers-grid .num {
                font-size: 30px;
            }
            .service-card {
                flex-direction: column;
                margin-bottom: 30px;
                padding: 20px 15px;
            }
            .about-grid {
                flex-direction: column;
            }
            .masters-grid {
                gap: 30px;
            }
            .section-title, .about-text h2 {
                font-size: 24px;
                line-height: 30px;
                margin-bottom: 30px;
            }
            .about.atmo {
                padding:0;
            }
            .faq, .promo {
                padding-top:0;
            }
            .masters {
                padding: 30px 0;
            }
            .t604 {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .promo-grid {
                gap:10px;
            }
            .adv-grid {
                gap:10px;
            }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                text-align: center;
            }
            .header-btn {
                width: 100%;
                text-align: center;
            }
        }
        
        
                .reviews-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            padding: 30px 15px 0px 15px;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 16px;
        }

        /* Каждая карточка — это ссылка */
        .review-link {
            flex: 1 1 200px;
            min-width: 180px;
            text-decoration: none;      /* убираем подчёркивание */
            color: inherit;            /* наследуем цвет текста */
            display: block;            /* чтобы занимал всю ширину */
            transition: 0.2s;
            border-radius: 16px;
        }

        .review-link:hover {
            transform: translateY(-2px);
        }

        .review-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: 0.2s;
            cursor: pointer;
        }

        .review-link:hover .review-card {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

        .logo-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            flex-shrink: 0;
        }

        .logo-yandex {
            background: #fc3f1d;
        }

        .logo-2gis {
            background: #1a9e4f;
        }

        .company-name {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
        }

        .stars {
            color: #ffb800;
            letter-spacing: 1px;
        }

        .rating-value {
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Доменное имя теперь просто текст, не ссылка */
        .domain {
            font-size: 14px;
            color: #555;
        }

        @media (max-width: 480px) {
            .btn-primary {
                text-align:center;
            }
            .review-grid, .masters-grid, .lead-grid, .contacts-grid, .service-card {
                 gap: 10px;
            }
            .reviews-container {
                gap: 10px;
            }
            .review-link {
                flex: 1 1 100%;
                min-width: unset;
            }
        }
        @media (min-width: 1000px) {
            .lead-grid .lead-item:last-child {
                display:none;
            }
        }    
        
            