        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #042d82;
            --primary-dark: #0a0d4c;
            --accent: #579afe;
            --accent-light: #56acfb;
            --accent-dark: #3a7fe0;
            --bg-white: #ffffff;
            --border: rgba(255,255,255,0.15);
            --success: #22c55e;
        }

        html { scroll-behavior: smooth; }

        @font-face { font-family: "Gilroy"; font-display: swap; }
        body {
            font-family: 'Gilroy', sans-serif;
            color: white;
            background: var(--primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 { font-family: 'Gilroy', sans-serif; }

        h1 {
            font-size: clamp(1.5rem, 3.8vw, 3.2rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
            color: white;
        }

        h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: white;
        }

        p {
            font-size: 1rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        /* ===== HEADER ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            background: rgba(4, 45, 130, 0.95);
            border-bottom: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 2px 12px rgba(0,0,0,0.2);
            transition: box-shadow 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 4px 24px rgba(0,0,0,0.3);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.9rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo img {
            height: 52px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            margin-left: auto;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255,255,255,0.85);
            font-weight: 700;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: white; }
        .nav-links a:hover::after { width: 100%; }

        .nav-buttons {
            display: flex;
            gap: 0.7rem;
            flex-shrink: 0;
        }

        .btn-secondary {
            padding: 0.55rem 1.1rem;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
            color: white;
            border-radius: 8px;
            font-family: 'Gilroy', sans-serif;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(4, 45, 130, 0.25);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 10px;
            font-family: 'Gilroy', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 6px 20px rgba(87, 154, 254, 0.4);
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(87, 154, 254, 0.5);
        }

        /* ===== BURGER MENU ===== */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            border: none;
            background: transparent;
            z-index: 1100;
            flex-shrink: 0;
        }

        .burger span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(4, 45, 130, 0.98);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-menu.open {
            display: flex;
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu a {
            text-decoration: none;
            color: white;
            font-family: 'Gilroy', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            transition: color 0.2s ease;
        }

        .mobile-menu a:hover { color: var(--accent); }

        .mobile-menu-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
            margin-top: 1rem;
        }

        .mobile-menu-buttons .btn-secondary,
        .mobile-menu-buttons .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
        }

        /* ===== HERO ===== */
        .hero-section {
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -200px; right: -150px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(87, 154, 254, 0.12) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -150px; left: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(10, 13, 76, 0.6) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeSlideLeft 0.8s ease-out both;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(87, 154, 254, 0.15);
            border: 1px solid rgba(87, 154, 254, 0.35);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.03em;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 0 3px rgba(87, 154, 254, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-content h1 span { color: var(--accent-light); }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 3px rgba(87, 154, 254, 0.3); }
            50% { box-shadow: 0 0 0 6px rgba(87, 154, 254, 0.1); }
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .hero-stat-value {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--accent-light);
            display: block;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeSlideRight 0.8s ease-out both;
        }

        .hero-visual-bg {
            position: absolute;
            width: 85%;
            height: 85%;
            background: radial-gradient(ellipse, rgba(87, 154, 254, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(20px);
        }

        .hero-visual img {
            width: 100%;
            max-width: 420px;
            height: auto;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 20px 50px rgba(4, 45, 130, 0.18));
            animation: floatImg 5s ease-in-out infinite;
        }

        @keyframes floatImg {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes fadeSlideLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeSlideRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ===== FEATURES ===== */
        .features {
            padding: 7rem 2rem 5rem;
            background: var(--accent);
            clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
            margin-top: -40px;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: white;
            background: rgba(87, 154, 254, 0.25);
            border: 1px solid rgba(87, 154, 254, 0.4);
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 0.8rem;
        }

        /* label на блакитному фоні — темно-синій */
        .features .section-label,
        .reviews .section-label,
        .feedback .section-label {
            background: rgba(4, 45, 130, 0.3);
            border-color: rgba(4, 45, 130, 0.5);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            padding: 2rem;
            background: rgba(4, 45, 130, 0.85);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-light), white);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: transparent;
            box-shadow: 0 16px 40px rgba(4, 45, 130, 0.4);
        }

        .feature-card:hover::before { transform: scaleX(1); }

        .feature-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(87, 154, 254, 0.35) 0%, rgba(87, 154, 254, 0.15) 100%);
            border: 1px solid rgba(87, 154, 254, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 4px 16px rgba(87, 154, 254, 0.2);
        }

        .feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: white; }
        .feature-card p { font-size: 0.95rem; margin: 0; color: rgba(255,255,255,0.75); font-weight: 500; }

        /* ===== PRICING ===== */
        .pricing-section {
            padding: 0 2rem 5rem;
            background: var(--accent);
        }

        .pricing {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            box-shadow: 0 20px 60px rgba(4, 45, 130, 0.25);
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 300px; height: 300px;
            background: rgba(87, 154, 254, 0.08);
            border-radius: 50%;
        }

        .pricing::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -40px;
            width: 250px; height: 250px;
            background: rgba(255,255,255, 0.04);
            border-radius: 50%;
        }

        .pricing-left { position: relative; z-index: 1; }

        .pricing h2 { color: white; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 0.5rem; }

        .price-badge {
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
            margin: 1.2rem 0;
        }

        .price-amount {
            font-family: 'Gilroy', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: var(--accent-light);
            line-height: 1;
        }

        .price-unit {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(255,255,255,0.7);
        }

        .pricing p { color: rgba(255,255,255,0.7); margin: 0; }

        .price-benefits {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .price-benefits li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .price-benefits li:last-child { border-bottom: none; }

        .price-benefits li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 900;
        }

        /* ===== PROCESS ===== */
        .process {
            background: var(--primary);
            padding: 7rem 2rem 5rem;
            clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
            margin-top: -40px;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 5%;
            width: 90%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), rgba(87,154,254,0.3));
            z-index: 0;
            opacity: 0.3;
        }

        .step {
            padding: 1.5rem 1rem;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .step:hover { transform: translateY(-8px); }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--accent) 0%, #3a6fd8 100%);
            color: white;
            border-radius: 50%;
            font-family: 'Gilroy', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            margin-bottom: 1rem;
            box-shadow: 0 8px 24px rgba(87, 154, 254, 0.45), 0 0 0 4px rgba(87, 154, 254, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(87, 154, 254, 0.3);
            transition: border-color 0.3s ease, transform 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.18);
            box-shadow: 0 12px 36px rgba(87, 154, 254, 0.6), 0 0 0 6px rgba(87, 154, 254, 0.2);
        }

        .step:hover .step-number::after {
            border-color: rgba(87, 154, 254, 0.6);
            transform: scale(1.08);
        }

        .step h3 { font-size: 0.95rem; margin-bottom: 0.4rem; color: white; }
        .step p { font-size: 0.88rem; margin: 0; color: rgba(255,255,255,0.65); }

        /* ===== BONUS ===== */
        .bonus {
            padding: 0 2rem 5rem;
            background: var(--primary);
        }

        .bonus-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.5rem;
            background: linear-gradient(135deg, #0a2472 0%, var(--primary-dark) 100%);
            border-radius: 24px;
            color: white;
            box-shadow: 0 16px 50px rgba(4, 45, 130, 0.2);
            position: relative;
            overflow: hidden;
        }

        .bonus-inner::after {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(87, 154, 254, 0.1) 0%, transparent 70%);
        }

        .bonus-inner h2 { color: white; text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 1; }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .bonus-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.3s ease;
        }

        .bonus-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(87, 154, 254, 0.4);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .bonus-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            display: block;
        }

        .bonus-item h3 { color: white; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .bonus-item p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.88rem; }

        /* ===== LOCATIONS ===== */
        .locations {
            background: var(--primary);
            padding: 5rem 2rem;
        }

        .locations-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .locations-search {
            display: flex;
            align-items: center;
            max-width: 440px;
            margin: 0 auto 2.5rem;
            background: rgba(255,255,255,0.08);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 0.1rem 0.1rem 0.1rem 1rem;
            transition: border-color 0.2s ease;
            box-shadow: none;
        }

        .locations-search:focus-within {
            border-color: var(--accent);
        }

        .locations-search input {
            border: none;
            outline: none;
            font-family: 'Gilroy', sans-serif;
            font-size: 0.95rem;
            color: white;
            caret-color: white;
            background: transparent;
            flex: 1;
            padding: 0.6rem 0;
        }

        .locations-search button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.6rem 1.2rem;
            font-family: 'Gilroy', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .locations-search button:hover { background: var(--primary-dark); }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1rem;
        }

        .location-item {
            padding: 1.2rem 1.5rem;
            background: rgba(255,255,255,0.07);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.25s ease;
        }

        .location-item:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .location-item.hidden { display: none; }

        .location-dot {
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 0 3px rgba(87, 154, 254, 0.25);
        }

        .location-item p {
            margin: 0;
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .no-results {
            text-align: center;
            color: rgba(255,255,255,0.6);
            padding: 2rem;
            grid-column: 1/-1;
            display: none;
        }

        /* ===== FEEDBACK ===== */
        .feedback {
            background: var(--accent);
            color: white;
            padding: 7rem 2rem 5rem;
            clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
            margin-top: -40px;
        }

        .feedback-container {
            max-width: 480px;
            margin: 0 auto;
            text-align: center;
        }

        .feedback-container h2 { color: white; margin-bottom: 0.8rem; }
        .feedback-container > p { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-size: 1rem; }

        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .input-group {
            position: relative;
        }

        .input-group .input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            z-index: 1;
        }

        .feedback-input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid rgba(255,255,255,0.25);
            border-radius: 10px;
            background: rgba(255,255,255,0.15);
            color: white;
            font-family: 'Gilroy', sans-serif;
            font-size: 1rem;
            transition: border-color 0.2s ease, background 0.2s ease;
            outline: none;
        }

        .feedback-input::placeholder { color: rgba(255,255,255,0.6); }

        .feedback-input:focus {
            border-color: white;
            background: rgba(255,255,255,0.2);
        }

        .btn-feedback {
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Gilroy', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s ease;
            margin-top: 0.5rem;
            box-shadow: 0 6px 20px rgba(4, 45, 130, 0.35);
        }

        .btn-feedback:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(4, 45, 130, 0.5);
        }

        .form-success {
            display: none;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .form-success.show { display: block; }
        .form-success p { color: white; margin: 0; font-size: 1.1rem; font-weight: 600; }
        .form-success .checkmark { font-size: 3rem; display: block; margin-bottom: 0.5rem; }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            box-shadow: inset 0 1px 0 rgba(87, 154, 254, 0.15);
        }

        .footer-top {
            max-width: 1200px;
            margin: 0 auto 3rem;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-logo { margin-bottom: 1rem; }
        .footer-logo img { height: 44px; width: auto; }

        .footer-section p {
            color: rgba(255,255,255,0.55);
            font-size: 0.88rem;
            margin: 0;
            line-height: 1.7;
        }

        .footer-section h4 {
            font-family: 'Gilroy', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.2rem;
        }

        .footer-section a {
            display: block;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            margin-bottom: 0.7rem;
            transition: color 0.2s ease;
            font-size: 0.9rem;
        }

        .footer-section a:hover { color: white; }

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            transition: all 0.25s ease;
            margin: 0;
            color: white;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.12);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.35);
            font-size: 0.82rem;
            margin: 0;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .steps { grid-template-columns: repeat(3, 1fr); }
            .steps::before { display: none; }
            .bonus-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-buttons { display: none; }
            .burger { display: flex; }

            .hero {
                grid-template-columns: 1fr;
                padding: 2rem 1.5rem;
                gap: 1.5rem;
            }

            .hero-visual { order: -1; }
            .hero-stats { gap: 1.2rem; }

            .pricing {
                grid-template-columns: 1fr;
                padding: 2rem;
                border-radius: 16px;
            }

            .features-grid { grid-template-columns: 1fr; }
            .steps { grid-template-columns: repeat(2, 1fr); }
            .bonus-inner { padding: 1.5rem; }
            .bonus-grid { grid-template-columns: repeat(2, 1fr); }

            .features, .process, .locations, .bonus, .feedback,
            .reviews, .faq, .map-section {
                padding-top: 2.5rem !important;
                padding-bottom: 3rem !important;
                clip-path: none !important;
                margin-top: 0 !important;
            }

            .pricing-section { padding-bottom: 3rem !important; }

            .section-header { margin-bottom: 1.2rem; }

            .feedback-container > p { margin-bottom: 1.2rem; }
            .reviews-grid { margin-top: 1.2rem; gap: 1rem; }
            .review-card { padding: 1.5rem; }

            .faq-list { margin-top: 1.2rem; }
        }

        @media (max-width: 480px) {
            nav { padding: 0.8rem 1rem; }

            .hero { padding: 2rem 1rem; }
            .hero-stats { flex-wrap: wrap; gap: 0.8rem; padding-top: 1.2rem; margin-top: 1.2rem; }

            .pricing { padding: 1.5rem 1.2rem; }
            .price-amount { font-size: 3.5rem; }

            .steps {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
            .step {
                display: flex;
                align-items: center;
                text-align: left;
                gap: 1rem;
                padding: 0.9rem 1rem;
                background: rgba(255,255,255,0.05);
                border-radius: 12px;
                border: 1px solid rgba(255,255,255,0.08);
            }
            .step-number {
                margin-bottom: 0;
                flex-shrink: 0;
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }
            .step h3 { margin-bottom: 0.2rem; }
            .step p { margin: 0; }

            .bonus-grid { grid-template-columns: 1fr; gap: 0.8rem; }
            .footer-top { grid-template-columns: 1fr; gap: 1.2rem; }

            .features, .process, .locations, .bonus, .feedback,
            .reviews, .faq, .map-section {
                padding-top: 2rem !important;
                padding-bottom: 3rem !important;
                clip-path: none !important;
                margin-top: 0 !important;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .map-frame { height: 280px; margin-top: 1rem; }
            .locations-search { margin-bottom: 1rem; }
            .locations-grid { gap: 0.6rem; }
            .location-item { padding: 0.9rem 1rem; }

            .pricing-section { padding: 0 1rem 3rem; }
            .section-header { margin-bottom: 0.8rem; }
            h2 { margin-bottom: 0.6rem; }

            .features-grid { gap: 0.8rem; }
            .feature-card { padding: 1.2rem; }
            .feature-icon { width: 42px; height: 42px; margin-bottom: 0.8rem; }

            .reviews-grid { gap: 0.8rem; margin-top: 1rem; }
            .review-card { padding: 1.2rem; }
            .faq-list { margin-top: 1rem; gap: 0.6rem; }

            .bonus-inner { padding: 1.2rem 1rem; }
            .bonus-inner h2 { margin-bottom: 1.2rem; }
            .bonus-item { padding: 1.2rem 1rem; }
            .bonus-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

            footer { padding: 2rem 1rem 1.2rem; }
            .footer-top { margin-bottom: 1.5rem; }
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            background: var(--primary);
            padding: 5rem 2rem;
        }
        .map-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .map-frame {
            width: 100%;
            height: 420px;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.12);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            margin-top: 2.5rem;
        }
        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* ===== COUNTER ANIMATION ===== */
        .hero-stat-value {
            display: block;
        }
        .counter-animated {
            transition: all 0.1s;
        }

        /* ===== REVIEWS SECTION ===== */
        .reviews {
            background: var(--accent);
            padding: 7rem 2rem 5rem;
            clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
            margin-top: -40px;
        }
        }
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .review-card {
            background: rgba(4, 45, 130, 0.85);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(4,45,130,0.4);
            border-color: rgba(255,255,255,0.2);
        }
        .review-quote {
            font-size: 3rem;
            line-height: 1;
            color: var(--accent-light);
            opacity: 0.5;
            margin-bottom: 0.5rem;
            font-family: Georgia, serif;
        }
        .review-text {
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        .review-stars {
            color: #fbbf24;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
        }
        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 900;
            color: white;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: white;
            display: block;
        }
        .review-source {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            background: var(--primary);
            padding: 7rem 2rem 5rem;
            clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
            margin-top: -40px;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-list {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .faq-item.open {
            border-color: rgba(87,154,254,0.4);
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.3rem 1.5rem;
            background: transparent;
            border: none;
            color: white;
            font-family: 'Gilroy', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-align: left;
            gap: 1rem;
            transition: color 0.2s ease;
        }
        .faq-question:hover { color: var(--accent-light); }
        .faq-item.open .faq-question { color: var(--accent-light); }
        .faq-chevron {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(87,154,254,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease, background 0.3s ease;
            font-size: 0.75rem;
        }
        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
            background: var(--accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 1.5rem;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.3rem;
        }
        .faq-answer p {
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }

        /* ===== RESPONSIVE new sections ===== */
        @media (max-width: 768px) {
            .reviews-grid { grid-template-columns: 1fr; }
            .map-frame { height: 300px; }
        }
        @media (max-width: 480px) {
            .reviews-grid { grid-template-columns: 1fr; }
        }


        /* ===== FLOATING CTA ===== */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 900;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.7rem;
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .floating-cta.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .floating-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.85rem 1.5rem;
            border-radius: 50px;
            font-family: 'Gilroy', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            white-space: nowrap;
            transition: all 0.25s ease;
            box-shadow: 0 8px 30px rgba(0,0,0,0.25);
        }

        .floating-btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            box-shadow: 0 8px 30px rgba(87, 154, 254, 0.45);
        }

        .floating-btn-primary:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 14px 40px rgba(87, 154, 254, 0.55);
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
        }

        .floating-btn-secondary {
            background: rgba(87, 154, 254, 0.15);
            color: white;
            border: 1.5px solid rgba(87, 154, 254, 0.4);
            backdrop-filter: blur(10px);
            font-size: 0.85rem;
            padding: 0.65rem 1.2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        .floating-btn-secondary:hover {
            transform: translateY(-2px);
            background: rgba(87, 154, 254, 0.28);
            box-shadow: 0 8px 24px rgba(87, 154, 254, 0.3);
        }

        .floating-scroll-top {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1.5px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            align-self: flex-end;
        }

        .floating-scroll-top:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        @media (max-width: 480px) {
            .floating-cta {
                bottom: 1.2rem;
                right: 1rem;
                left: auto;
                align-items: flex-end;
            }
            .floating-btn {
                justify-content: center;
                padding: 0.6rem 1.1rem;
                font-size: 0.8rem;
                white-space: nowrap;
            }
            .floating-btn-secondary {
                padding: 0.5rem 0.9rem;
                font-size: 0.75rem;
            }
            .floating-scroll-top {
                align-self: flex-end;
                width: 36px;
                height: 36px;
            }
        }


        /* ===== TELEGRAM BUBBLE ===== */
        .tg-bubble {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 900;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.6rem;
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .tg-bubble.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .tg-bubble-tooltip {
            background: white;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            white-space: nowrap;
            opacity: 0;
            transform: translateX(-8px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            pointer-events: none;
        }

        .tg-bubble:hover .tg-bubble-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        .tg-bubble-btn {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #29a8e0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(41, 168, 224, 0.5);
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
        }

        .tg-bubble-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(41, 168, 224, 0.4);
            animation: tg-ping 2s ease-out infinite;
        }

        @keyframes tg-ping {
            0%   { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.7); opacity: 0; }
        }

        .tg-bubble-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 32px rgba(41, 168, 224, 0.6);
        }

        .tg-bubble-btn svg {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .tg-bubble {
                bottom: 1.2rem;
                left: 1rem;
            }
        }


        .faq-answer a[href^="tel"] {
            color: var(--accent-light);
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }
        .faq-answer a[href^="tel"]:hover { color: white; }


/* ===== ORDER PAGE ===== */
.order-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.order-page::before {
    content: '';
    position: absolute;
    top: -200px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(87, 154, 254, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.order-page::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(10, 13, 76, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.order-card {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    animation: cardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(87, 154, 254, 0.25), rgba(87, 154, 254, 0.08));
    border: 2px solid rgba(87, 154, 254, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: popIn 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
}

.order-card h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    animation: fadeUp 0.5s 0.3s ease both;
}

.order-card p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 0;
    animation: fadeUp 0.5s 0.35s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.progress-wrap {
    margin: 2rem 0 0.5rem;
    animation: fadeUp 0.5s 0.4s ease both;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
    transition: width 0.1s linear;
}

.progress-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.5rem;
    font-weight: 600;
}

.progress-label span {
    color: var(--accent);
    font-weight: 700;
}

.btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 1.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(87, 154, 254, 0.4);
    animation: fadeUp 0.5s 0.45s ease both;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    flex-direction: row;
    flex-wrap: nowrap;
}

.btn-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(87, 154, 254, 0.55);
}

.btn-back {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    animation: fadeUp 0.5s 0.5s ease both;
    font-weight: 600;
}

.btn-back:hover { color: rgba(255,255,255,0.8); }

.logo-top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(4, 45, 130, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

.logo-top img { height: 44px; width: auto; }

@media (max-width: 480px) {
    .order-card { padding: 2rem 1.5rem; border-radius: 20px; }
    .btn-form { font-size: 0.78rem; padding: 1rem 1rem; gap: 6px; }
}
