        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #1a1a2e;
            background: #f5f2f0;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
            text-align: center;
        }
        .btn--primary {
            background: linear-gradient(135deg, #c9a84c, #b8942a);
            color: #fff;
            box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
        }
        .btn--primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(201, 168, 76, 0.45);
        }
        .btn--secondary {
            background: transparent;
            color: #1a1a2e;
            border: 2px solid #1a1a2e;
        }
        .btn--secondary:hover {
            background: #1a1a2e;
            color: #fff;
            transform: translateY(-3px);
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 252, 250, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            z-index: 1000;
            padding: 14px 0;
        }
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .logo {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .logo__name {
            font-size: 24px;
            font-weight: 800;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }
        .logo__name::after {
            content: "™";
            font-size: 12px;
            font-weight: 400;
            color: #c9a84c;
            margin-left: 2px;
        }
        .logo__tagline {
            font-size: 11px;
            font-weight: 500;
            color: #b8942a;
            text-transform: uppercase;
            letter-spacing: 2.5px;
        }
        .nav__list {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav__link {
            font-size: 15px;
            font-weight: 500;
            color: #555;
            transition: color 0.3s;
            position: relative;
            padding: 4px 0;
        }
        .nav__link:hover { color: #c9a84c; }
        .nav__link--active { color: #c9a84c; }
        .nav__link--active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #c9a84c, #b8942a);
            border-radius: 2px;
        }
        .lang-switcher {
            display: flex;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
        }
        .lang-switcher__link {
            color: #aaa;
            transition: all 0.3s;
            padding: 4px 8px;
            border-radius: 4px;
            cursor: pointer;
        }
        .lang-switcher__link:hover { color: #1a1a2e; }
        .lang-switcher__link--active {
            color: #b8942a;
            background: rgba(201, 168, 76, 0.12);
        }
        .lang-switcher__divider { color: #ddd; }
        
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(145deg, #fffcf9 0%, #f5f0eb 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🏮";
            position: absolute;
            font-size: 300px;
            right: -60px;
            top: -80px;
            opacity: 0.04;
            transform: rotate(-15deg);
        }
        .hero__inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero__badge {
            display: inline-block;
            background: linear-gradient(135deg, #c9a84c, #b8942a);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 18px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        .hero__title {
            font-size: 50px;
            font-weight: 800;
            line-height: 1.12;
            margin-bottom: 20px;
            color: #1a1a2e;
        }
        .hero__title--highlight {
            background: linear-gradient(135deg, #c9a84c, #8a7a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero__text {
            font-size: 18px;
            color: #666;
            max-width: 500px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .hero__buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero__image {
            background: linear-gradient(145deg, #2a2520, #1a1613);
            border-radius: 24px;
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #c9a84c;
            font-size: 100px;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }
        .hero__image span {
            font-size: 22px;
            font-weight: 400;
            margin-top: 10px;
            color: #b8942a;
            letter-spacing: 2px;
        }
        
        .stats {
            padding: 50px 0;
            background: #fffcf9;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        .stats__inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .stats__number {
            display: block;
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, #c9a84c, #8a7a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .stats__label {
            font-size: 14px;
            color: #888;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        .section-header__subtitle {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: #b8942a;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }
        .section-header__subtitle::before,
        .section-header__subtitle::after {
            content: "—";
            margin: 0 10px;
            color: #ddd;
        }
        .section-header__title {
            font-size: 38px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }
        .section-header__text {
            font-size: 17px;
            color: #777;
            line-height: 1.7;
        }
        
        .services-preview {
            padding: 80px 0;
            background: #fffcf9;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        .service-card {
            background: #fff;
            padding: 32px 24px;
            border-radius: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #c9a84c, #b8942a, #c9a84c);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .service-card:hover::before { opacity: 1; }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
            border-color: rgba(201, 168, 76, 0.15);
        }
        .service-card__icon { font-size: 38px; margin-bottom: 14px; display: block; }
        .service-card__title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 8px;
        }
        .service-card__text {
            font-size: 14px;
            color: #777;
            line-height: 1.7;
        }
        .services-preview__action { text-align: center; }
        
        .advantages {
            padding: 80px 0;
            background: linear-gradient(145deg, #fffcf9 0%, #f5f0eb 100%);
        }
        .advantages__inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .advantages__list {
            margin: 28px 0 36px;
        }
        .advantages__list li {
            padding: 12px 0;
            font-size: 16px;
            color: #444;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .advantages__list li:last-child { border-bottom: none; }
        .advantages__image {
            background: linear-gradient(145deg, #2a2520, #1a1613);
            border-radius: 24px;
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #c9a84c;
            font-size: 80px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
        }
        .advantages__image span {
            font-size: 20px;
            font-weight: 400;
            margin-top: 10px;
            color: #b8942a;
            letter-spacing: 1px;
        }
        
        .contacts-section {
            padding: 80px 0;
            background: #fffcf9;
        }
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            max-width: 1000px;
            margin: 0 auto;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }
        .contact-item:last-child { margin-bottom: 0; }
        .contact-item__icon {
            font-size: 28px;
            width: 50px;
            height: 50px;
            background: rgba(201, 168, 76, 0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-item__label {
            font-weight: 600;
            color: #1a1a2e;
            font-size: 15px;
        }
        .contact-item__value {
            color: #666;
            font-size: 15px;
        }
        .contact-item__value a {
            color: #b8942a;
            font-weight: 500;
        }
        .contact-item__value a:hover { color: #8a7a3a; }
        
        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .contact-form__title {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 24px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 14px;
            color: #555;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #f0ece9;
            border-radius: 12px;
            font-size: 15px;
            transition: border-color 0.3s;
            outline: none;
            font-family: inherit;
            background: #faf8f7;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #c9a84c;
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }
        .contact-form .btn { width: 100%; }
        
        .footer {
            background: #1a1613;
            color: #aaa;
            padding: 60px 0 0;
        }
        .footer__inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer .logo__name { color: #fff; }
        .footer .logo__tagline { color: #b8942a; }
        .footer__description {
            font-size: 14px;
            color: #888;
            line-height: 1.7;
            max-width: 300px;
            margin-top: 12px;
        }
        .footer__heading {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer__list li { margin-bottom: 10px; }
        .footer__list a {
            color: #888;
            font-size: 14px;
            transition: color 0.3s;
        }
        .footer__list a:hover { color: #c9a84c; }
        .footer__lang-link {
            color: #c9a84c !important;
            font-weight: 600;
        }
        .footer__bottom {
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: #666;
        }
        
        @media (max-width: 992px) {
            .hero__inner { grid-template-columns: 1fr; text-align: center; }
            .hero__text { max-width: 100%; margin-left: auto; margin-right: auto; }
            .hero__buttons { justify-content: center; }
            .advantages__inner { grid-template-columns: 1fr; text-align: center; }
            .advantages__list li { justify-content: center; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
            .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero__title { font-size: 38px; }
        }
        @media (max-width: 768px) {
            .header__inner { flex-direction: column; align-items: stretch; text-align: center; gap: 10px; }
            .nav__list { justify-content: center; gap: 14px; flex-wrap: wrap; }
            .lang-switcher { justify-content: center; }
            .hero__title { font-size: 30px; }
            .hero { padding: 130px 0 50px; }
            .article-hero, .articles-hero { padding-top: 130px; }
            .services-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
            .footer__inner { grid-template-columns: 1fr; text-align: center; }
            .footer__description { max-width: 100%; }
            .section-header__title { font-size: 28px; }
            .hero__image { font-size: 70px; }
            .hero__image span { font-size: 17px; }
            .contact-form { padding: 24px; }
        }
        @media (max-width: 480px) {
            .hero__buttons { flex-direction: column; align-items: center; }
            .btn { width: 100%; max-width: 280px; }
            .stats__number { font-size: 30px; }
        }

        /* ---- Tour package ---- */
        .tour {
            padding: 80px 0;
            background: linear-gradient(145deg, #2a2520, #1a1613);
            color: #fff;
        }
        .tour__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .tour__eyebrow {
            display: inline-block; font-size: 12px; font-weight: 700; color: #c9a84c;
            text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 14px;
        }
        .tour__title { font-size: 34px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
        .tour__text { font-size: 16px; color: #c8c3ba; line-height: 1.8; margin-bottom: 24px; max-width: 480px; }
        .tour__list { margin-bottom: 30px; }
        .tour__list li {
            display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 15px; color: #ded8cd;
        }
        .tour__list li::before { content: "✓"; color: #c9a84c; font-weight: 700; flex-shrink: 0; }
        .tour__note { font-size: 13px; color: #8a8478; margin-top: 16px; }
        .tour__card {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.25);
            border-radius: 20px; padding: 34px;
        }
        .tour__card-row {
            display: flex; justify-content: space-between; padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14.5px; color: #cfc9be;
        }
        .tour__card-row:last-of-type { border-bottom: none; }
        .tour__card-row strong { color: #fff; font-weight: 600; }
        .tour__price {
            font-size: 34px; font-weight: 800; color: #c9a84c; margin: 18px 0 6px;
        }
        .tour__price span { font-size: 14px; color: #8a8478; font-weight: 500; }

        .tour-photos {
            display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; margin-top: 50px;
        }
        .tour-photos__item {
            display: block; overflow: hidden; border-radius: 14px; border: 1px solid rgba(201,168,76,0.25);
        }
        .tour-photos__item--wide { grid-column: span 2; }
        .tour-photos__item img {
            width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease;
        }
        .tour-photos__item:hover img { transform: scale(1.05); }
        .tour .gallery-note { color: #8a8478; margin-top: 18px; }
        @media (max-width: 700px) {
            .tour-photos { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
            .tour-photos__item--wide { grid-column: span 2; }
        }

        /* ---- Gallery (placeholder illustrations) ---- */
        .gallery { padding: 80px 0; background: #fffcf9; }
        .gallery-note { text-align: center; font-size: 13.5px; color: #999; margin-top: -30px; margin-bottom: 40px; }
        .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .gallery-item {
            aspect-ratio: 1; border-radius: 16px; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 16px;
        }
        .gallery-item span.emoji { font-size: 40px; }
        .gallery-item span.cap { font-size: 12.5px; font-weight: 600; color: #fff; opacity: .9; }
        .gallery-item:nth-child(1){ background: linear-gradient(150deg,#c9a84c,#8a7a3a); }
        .gallery-item:nth-child(2){ background: linear-gradient(150deg,#2a2520,#1a1613); }
        .gallery-item:nth-child(3){ background: linear-gradient(150deg,#b8942a,#6e5f24); }
        .gallery-item:nth-child(4){ background: linear-gradient(150deg,#3a332b,#1a1613); }

        /* ---- Blog / Articles ---- */
        .blog { padding: 80px 0; background: linear-gradient(145deg, #fffcf9 0%, #f5f0eb 100%); }
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .blog-card {
            background: #fff; border-radius: 20px; padding: 30px 26px; border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }
        .blog-card__tag {
            display: inline-block; font-size: 11px; font-weight: 700; color: #b8942a;
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
        }
        .blog-card__title { font-size: 19px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.3; }
        .blog-card__text { font-size: 14.5px; color: #777; line-height: 1.75; }
        .blog-grid .blog-card { display: flex; flex-direction: column; }
        .blog-card__link {
            display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 700; color: #b8942a;
            text-decoration: none;
        }
        .blog-card__link:hover { text-decoration: underline; }
        .blog-cta { text-align: center; margin-top: 44px; }

        /* ---- Articles listing page ---- */
        .articles-hero {
            padding: 150px 0 40px; background: linear-gradient(145deg, #2a2520, #1a1613); color: #fff; text-align: center;
        }
        .articles-hero__eyebrow { display: block; font-size: 12px; font-weight: 700; color: #c9a84c; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 14px; }
        .articles-hero h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
        .articles-hero p { font-size: 16px; color: #c8c3ba; max-width: 560px; margin: 0 auto; }
        .articles-list { padding: 70px 0 90px; background: #fffcf9; }
        .articles-list .blog-grid { grid-template-columns: repeat(3, 1fr); }
        @media (max-width: 900px) { .articles-list .blog-grid { grid-template-columns: 1fr; } }

        /* ---- Single article page ---- */
        .article-hero { padding: 150px 0 40px; background: linear-gradient(145deg, #2a2520, #1a1613); color: #fff; }
        .article-hero .container { max-width: 760px; }
        .article-breadcrumb { font-size: 13px; color: #a89f8f; margin-bottom: 20px; }
        .article-breadcrumb a { color: #c9a84c; text-decoration: none; }
        .article-breadcrumb a:hover { text-decoration: underline; }
        .article-hero__tag {
            display: inline-block; font-size: 11px; font-weight: 700; color: #c9a84c;
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
        }
        .article-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
        .article-hero__meta { font-size: 13.5px; color: #a89f8f; }
        .article-body { padding: 56px 0 30px; background: #fffcf9; }
        .article-body .container { max-width: 760px; }
        .article-body h2 { font-size: 24px; font-weight: 800; color: #1a1a2e; margin: 40px 0 16px; line-height: 1.3; }
        .article-body h2:first-child { margin-top: 0; }
        .article-body p { font-size: 16.5px; line-height: 1.85; color: #3d3a34; margin-bottom: 20px; }
        .article-body ul { margin: 0 0 20px 22px; }
        .article-body li { font-size: 16.5px; line-height: 1.85; color: #3d3a34; margin-bottom: 8px; }
        .article-body strong { color: #1a1a2e; }
        .article-cta {
            margin-top: 20px; padding: 34px; border-radius: 20px;
            background: linear-gradient(145deg, #2a2520, #1a1613); color: #fff; text-align: center;
        }
        .article-cta h3 { font-size: 20px; margin-bottom: 10px; }
        .article-cta p { color: #c8c3ba; font-size: 14.5px; margin-bottom: 20px; }
        .article-nav { padding: 0 0 70px; background: #fffcf9; }
        .article-nav .container { max-width: 760px; }
        .article-nav a { display: inline-block; font-size: 14.5px; font-weight: 700; color: #b8942a; text-decoration: none; }
        .article-nav a:hover { text-decoration: underline; }

        @media (max-width: 992px) {
            .tour__inner { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .blog-grid { grid-template-columns: 1fr; }
        }

        /* ---- Simple contact CTAs ---- */
        .contacts-cta {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto;
        }
        .contacts-cta__btn {
            display: flex; align-items: center; gap: 16px; padding: 26px 24px;
            border-radius: 18px; text-decoration: none; background: #fff;
            border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 14px rgba(0,0,0,0.04);
            transition: transform .15s ease, box-shadow .15s ease;
        }
        .contacts-cta__btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
        .contacts-cta__icon { font-size: 30px; flex-shrink: 0; }
        .contacts-cta__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
        .contacts-cta__text strong { font-size: 16.5px; color: #1a1a2e; }
        .contacts-cta__text small { font-size: 13px; color: #888; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .contacts-cta__btn--whatsapp { border-color: rgba(37,211,102,0.3); }
        .contacts-cta__btn--telegram { border-color: rgba(38,143,214,0.3); }
        .contacts-cta__btn--email { border-color: rgba(201,168,76,0.35); }

        /* ---- Floating quick-contact buttons ---- */
        .float-contacts {
            position: fixed; right: 22px; bottom: 22px; z-index: 999;
            display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
        }
        .float-contacts a {
            width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 26px; text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.22);
            transition: transform .15s ease;
        }
        .float-contacts a:hover { transform: scale(1.08); }
        .float-contacts__whatsapp { background: #25d366; }
        .float-contacts__telegram { background: #2a9be0; }
        @media (max-width: 600px) {
            .float-contacts { right: 14px; bottom: 14px; }
            .float-contacts a { width: 50px; height: 50px; font-size: 22px; }
        }
        @media (max-width: 700px) {
            .contacts-cta { grid-template-columns: 1fr; }
        }
