﻿*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(10, 10, 10, .95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #1e1e1e
        }

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

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .logo img {
            height: 64px;
            width: auto
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none
        }

        .nav-link {
            padding: 8px 14px;
            border-radius: 8px;
            font-weight: 500;
            font-size: .9rem;
            color: rgba(255, 255, 255, .8);
            text-decoration: none
        }

        .nav-link.active {
            color: #e63946
        }

        .btn-nav {
            background: #e63946 !important;
            color: #fff !important;
            padding: 10px 18px !important;
            border-radius: 12px !important;
            font-weight: 600 !important;
            font-size: .85rem !important;
            margin-left: 8px;
            white-space: nowrap !important;
            flex-shrink: 0;
            display: inline-flex !important;
            align-items: center;
            line-height: 1.2
        }

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

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px
        }

        .page-hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #0a0a0a 0%, rgba(230, 57, 70, .05) 50%, #0a0a0a 100%);
            border-bottom: 1px solid #1e1e1e
        }

        .page-hero-content {
            text-align: center
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.2
        }

        .text-red {
            color: #e63946
        }

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

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: .85rem;
            font-weight: 600;
            color: #e63946;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .2);
            margin-bottom: 16px
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 800
        }

        .srv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px;
            margin-top: 40px
        }

        .srv-card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            padding: 36px;
            transition: all .3s
        }

        .srv-card:hover {
            border-color: rgba(230, 57, 70, .3);
            transform: translateY(-4px)
        }

        .srv-icon {
            font-size: 2.2rem;
            color: #e63946;
            margin-bottom: 16px
        }

        .srv-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #fff
        }

        .srv-card p {
            color: rgba(255, 255, 255, .65);
            font-size: .95rem;
            line-height: 1.8;
            margin-bottom: 16px
        }

        .srv-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .srv-features li {
            color: rgba(255, 255, 255, .7);
            font-size: .88rem;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .srv-features li i {
            color: #e63946;
            font-size: .7rem
        }

        .brands-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px
        }

        .brand-tag {
            padding: 4px 12px;
            border-radius: 6px;
            background: rgba(230, 57, 70, .1);
            color: #e63946;
            font-size: .78rem;
            font-weight: 600
        }

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

        .why-card {
            background: rgba(230, 57, 70, .06);
            border: 1px solid rgba(230, 57, 70, .15);
            border-radius: 14px;
            padding: 28px;
            text-align: center
        }

        .why-card i {
            font-size: 2rem;
            color: #e63946;
            margin-bottom: 12px
        }

        .why-card h4 {
            font-size: 1rem;
            margin-bottom: 8px
        }

        .why-card p {
            color: rgba(255, 255, 255, .55);
            font-size: .85rem
        }

        @media(max-width:1024px) {
            .hamburger {
                display: flex
            }

            .nav-menu {
                display: none
            }

            .nav-menu.open {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                width: 280px;
                height: 100vh;
                background: rgba(10, 10, 10, .98);
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 24px 40px;
                z-index: 999
            }

            .srv-grid {
                grid-template-columns: 1fr
            }
        }
