:root {
     --color-dark: #0a0a0f;
     --color-darker: #05050a;
     --color-navy: #0f1419;
     --color-navy-light: #1a1f2e;
     --color-gray-900: #111827;
     --color-gray-800: #1f2937;
     --color-gray-700: #374151;
     --color-gray-600: #4b5563;
     --color-gray-400: #9ca3af;
     --color-gray-300: #d1d5db;
     --color-gray-200: #e5e7eb;
     --color-gray-100: #f3f4f6;
     --color-white: #ffffff;
     --color-accent: #3b82f6;
     --color-accent-dark: #2563eb;
     --color-accent-light: #60a5fa;
     --gradient-primary: linear-gradient(135deg, #0a0a0f 0%, #1a1f2e 50%, #0f1419 100%);
     --gradient-accent: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
     --gradient-card: linear-gradient(145deg, rgba(31, 41, 55, 0.5) 0%, rgba(17, 24, 39, 0.3) 100%);
     --gradient-hover: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
     --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
     --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
     --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
     --shadow-accent: 0 8px 32px rgba(59, 130, 246, 0.3);
     --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     --font-display: 'Space Grotesk', sans-serif;
     --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
     font-size: 16px;
}
 body {
     font-family: var(--font-primary);
     background: var(--color-darker);
     color: var(--color-gray-100);
     line-height: 1.6;
     overflow-x: hidden;
     position: relative;
}
 body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(ellipse at 20% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%), linear-gradient(180deg, var(--color-darker) 0%, var(--color-dark) 50%, var(--color-navy) 100%);
     z-index: -1;
     pointer-events: none;
}
 .container {
     max-width: 1320px;
     margin: 0 auto;
     padding: 0 24px;
}
 .header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(10, 10, 15, 0.8);
     backdrop-filter: blur(20px) saturate(180%);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     transition: var(--transition-smooth);
}
 .header.scrolled {
     background: rgba(10, 10, 15, 0.95);
     box-shadow: var(--shadow-lg);
}
 .nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 80px;
}
 .nav__logo {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 1.5rem;
     color: var(--color-white);
     transition: var(--transition-smooth);
}
 .nav__logo:hover {
     transform: translateY(-2px);
}
 .logo__icon {
     font-size: 2rem;
     filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
}
 .logo__text {
     letter-spacing: -0.5px;
}
 .logo__premium {
     color: var(--color-accent-light);
     margin-left: 4px;
}
 .nav__menu {
     display: flex;
     align-items: center;
}
 .nav__list {
     display: flex;
     align-items: center;
     gap: 8px;
     list-style: none;
}
 .nav__link {
     display: flex;
     align-items: center;
     gap: 6px;
     padding: 10px 20px;
     color: var(--color-gray-300);
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     border-radius: 8px;
     transition: var(--transition-smooth);
     position: relative;
}
 .nav__link::before {
     content: '';
     position: absolute;
     bottom: 6px;
     left: 50%;
     transform: translateX(-50%) scaleX(0);
     width: 60%;
     height: 2px;
     background: var(--gradient-accent);
     border-radius: 2px;
     transition: var(--transition-smooth);
}
 .nav__link:hover, .nav__link.active-link {
     color: var(--color-white);
     background: rgba(59, 130, 246, 0.1);
}
 .nav__link:hover::before, .nav__link.active-link::before {
     transform: translateX(-50%) scaleX(1);
}
 .dropdown {
     position: relative;
}
 .dropdown-toggle {
     cursor: pointer;
}
 .dropdown-arrow {
     font-size: 0.7rem;
     transition: var(--transition-smooth);
}
 .dropdown:hover .dropdown-arrow, .dropdown.active .dropdown-arrow {
     transform: rotate(180deg);
}
 .dropdown-menu {
     position: absolute;
     top: calc(100% + 12px);
     left: 0;
     min-width: 220px;
     background: rgba(17, 24, 39, 0.98);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     box-shadow: var(--shadow-xl);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: var(--transition-smooth);
     list-style: none;
     overflow: hidden;
}
 .dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .dropdown-item {
     display: block;
     padding: 14px 20px;
     color: var(--color-gray-300);
     text-decoration: none;
     font-weight: 500;
     font-size: 0.9rem;
     transition: var(--transition-smooth);
     border-left: 3px solid transparent;
}
 .dropdown-item:hover {
     background: rgba(59, 130, 246, 0.15);
     color: var(--color-white);
     border-left-color: var(--color-accent);
     padding-left: 24px;
}
 .nav__actions {
     display: flex;
     align-items: center;
     gap: 16px;
}
 .nav__toggle, .nav__close {
     display: none;
}
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 12px 28px;
     font-family: var(--font-primary);
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     transition: var(--transition-smooth);
     position: relative;
     overflow: hidden;
}
 .btn::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     transform: translate(-50%, -50%);
     transition: width 0.6s, height 0.6s;
}
 .btn:hover::before {
     width: 300px;
     height: 300px;
}
 .btn--primary {
     background: var(--gradient-accent);
     color: var(--color-white);
     box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
 .btn--primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
 .btn--secondary {
     background: rgba(255, 255, 255, 0.05);
     color: var(--color-white);
     border: 1px solid rgba(255, 255, 255, 0.1);
}
 .btn--secondary:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.2);
}
 .btn--large {
     padding: 16px 36px;
     font-size: 1.05rem;
}
 .btn__icon {
     transition: var(--transition-smooth);
}
 .btn:hover .btn__icon {
     transform: translateX(4px);
}
 .btn--oval {
     border-radius: 50px !important;
     padding: 10px 24px !important;
     background: var(--gradient-accent) !important;
     color: var(--color-white) !important;
     border: none !important;
     font-weight: 600 !important;
     text-transform: uppercase !important;
     letter-spacing: 0.5px !important;
     font-size: 0.8rem !important;
     box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
     transition: var(--transition-smooth) !important;
     display: inline-block !important;
     text-decoration: none !important;
}
 .btn--oval:hover {
     transform: translateY(-2px) !important;
     box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}
 .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 80px;
     overflow: hidden;
}
 .hero__background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}
 .gradient-orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(120px);
     opacity: 0.3;
     animation: float 20s ease-in-out infinite;
}
 .orb-1 {
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
     top: -200px;
     left: -100px;
     animation-delay: 0s;
}
 .orb-2 {
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
     bottom: -150px;
     right: -100px;
     animation-delay: 7s;
}
 .orb-3 {
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     animation-delay: 14s;
}
 @keyframes float {
     0%, 100% {
         transform: translate(0, 0) scale(1);
    }
     33% {
         transform: translate(50px, -50px) scale(1.1);
    }
     66% {
         transform: translate(-50px, 50px) scale(0.9);
    }
}
 .hero__container {
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 60px;
     align-items: center;
}
 .hero__content {
     z-index: 1;
}
 .hero__badge {
     display: inline-flex;
     align-items: center;
     padding: 8px 20px;
     background: rgba(59, 130, 246, 0.15);
     border: 1px solid rgba(59, 130, 246, 0.3);
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 600;
     color: var(--color-accent-light);
     margin-bottom: 24px;
     backdrop-filter: blur(10px);
}
 .hero__title {
     font-family: var(--font-display);
     font-size: 4.5rem;
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -2px;
     margin-bottom: 24px;
     color: var(--color-white);
}
 .gradient-text {
     background: var(--gradient-accent);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3));
}
 .hero__description {
     font-size: 1.2rem;
     line-height: 1.8;
     color: var(--color-gray-300);
     margin-bottom: 40px;
     max-width: 600px;
}
 .hero__cta {
     display: flex;
     align-items: center;
     gap: 16px;
     margin-bottom: 60px;
}
 .hero__stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 32px;
     padding: 32px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}
 .stat {
     text-align: center;
}
 .stat__number {
     font-family: var(--font-display);
     font-size: 2.5rem;
     font-weight: 700;
     background: var(--gradient-accent);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 8px;
}
 .stat__label {
     font-size: 0.9rem;
     color: var(--color-gray-400);
     font-weight: 500;
}
 .hero__visual {
     position: relative;
     height: 500px;
}
 .floating-card {
     position: absolute;
/*     border: 1px solid rgba(255, 255, 255, 0.1);*/
     border-radius: 20px;
     padding: 24px;
     /*box-shadow: var(--shadow-xl);*/
     display: flex;
     align-items: center;
     gap: 16px;
     transition: var(--transition-smooth);
     animation: floatCard 6s ease-in-out infinite;
}
 .floating-card:hover {
     transform: translateY(-8px) scale(1.05);
     /*box-shadow: var(--shadow-accent);
     border-color: rgba(59, 130, 246, 0.3);*/
}
 .card-1 {
     top: 10%;
     left: 10%;
     animation-delay: 0s;
}
 .card-2 {
     top: 40%;
     right: 5%;
     animation-delay: 2s;
}
 .card-3 {
     bottom: 15%;
     left: 20%;
     animation-delay: 4s;
}
 @keyframes floatCard {
     0%, 100% {
         transform: translateY(0);
    }
     50% {
         transform: translateY(-20px);
    }
}
 .card__icon {
     font-size: 2.5rem;
     filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}
 .card__content {
     display: flex;
     flex-direction: column;
}
 .card__title {
     font-size: 0.85rem;
     color: var(--color-gray-400);
     font-weight: 500;
     margin-bottom: 4px;
}
 .card__value {
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--color-white);
}
 .hero-image {
     box-shadow: 0 20px 40px rgba(10, 25, 47, 0.8), 0 8px 24px rgba(15, 40, 80, 0.6), 0 0 0 1px rgba(59, 130, 246, 0.1) !important;
     border-radius: 12px;
     border: none !important;
}
 .advantages {
     padding: 80px 0;
     position: relative;
}
 .advantages__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
}
 .advantage-card {
     background: var(--gradient-card);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 16px;
     padding: 32px 24px;
     text-align: center;
     transition: var(--transition-smooth);
     position: relative;
     overflow: hidden;
}
 .advantage-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--gradient-hover);
     opacity: 0;
     transition: var(--transition-smooth);
}
 .advantage-card:hover {
     transform: translateY(-8px);
     border-color: rgba(59, 130, 246, 0.3);
     box-shadow: var(--shadow-accent);
}
 .advantage-card:hover::before {
     opacity: 1;
}
 .advantage__icon {
     font-size: 3rem;
     margin-bottom: 20px;
     filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
     position: relative;
     z-index: 1;
}
 .advantage__title {
     font-family: var(--font-display);
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 12px;
     color: var(--color-white);
     position: relative;
     z-index: 1;
}
 .advantage__text {
     font-size: 0.95rem;
     line-height: 1.6;
     color: var(--color-gray-400);
     position: relative;
     z-index: 1;
}
 .services {
     padding: 80px 0;
     position: relative;
}
 .section__header {
     text-align: center;
     margin-bottom: 60px;
}
 .section__badge {
     display: inline-flex;
     align-items: center;
     padding: 8px 20px;
     background: rgba(59, 130, 246, 0.15);
     border: 1px solid rgba(59, 130, 246, 0.3);
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 600;
     color: var(--color-accent-light);
     margin-bottom: 20px;
}
 .section__title {
     font-family: var(--font-display);
     font-size: 3rem;
     font-weight: 800;
     line-height: 1.2;
     letter-spacing: -1px;
     color: var(--color-white);
     margin-bottom: 20px;
}
 .section__description {
     font-size: 1.1rem;
     color: var(--color-gray-400);
     max-width: 600px;
     margin: 0 auto;
}
 .services__grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     max-width: 1200px;
     margin: 0 auto;
}
.service-card {
    text-align: center;
    background-color: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}
 .service-card:hover {
     transform: translateY(-8px);
     border-color: #3897ff;
     box-shadow: 0 20px 40px -12px rgba(56, 151, 255, 0.4), 0 0 15px rgba(56, 151, 255, 0.6);
}
 .service-card:hover::before {
     opacity: 1;
}
 .service-card.featured {
     border-color: #E6FF29;
     box-shadow: 1px 8px 32px -4px rgba(255,161,0,0.79);
     -webkit-box-shadow: 1px 8px 32px -4px rgba(255,161,0,0.79);
     -moz-box-shadow: 1px 8px 32px -4px rgba(255,161,0,0.79);
}
 .service-card.featured::before {
     opacity: 0.5;
}
 .service-card__header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 0;
     padding: 20px 16px 0 16px;
     position: relative;
     z-index: 1;
}
 .service-card__icon {
     font-size: 2.2rem;
     filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}
 .service-card__badge {
     padding: 4px 12px;
     background: rgba(59, 130, 246, 0.2);
     border: 2px solid #30363d;
     border-radius: 16px;
     font-size: 0.7rem;
     font-weight: 600;
     color: var(--color-accent-light);
}
 .service-card__badge--featured {
     background: var(--gradient-accent);
     border-color: transparent;
     color: var(--color-white);
     box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}
 .service-card__image {
     margin: 16px 0 16px 0;
     width: 100%;
     overflow: hidden;
     border-radius: 0;
}
 .service-card__image img {
     width: 100%;
     height: 100px;
     object-fit: cover;
     display: block;
}
 .service-card__title {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 12px;
     color: var(--color-white);
     position: relative;
     z-index: 1;
     text-align: center;
     padding: 0 16px;
}
 .service-card__description {
     font-size: 0.85rem;
     line-height: 1.6;
     color: var(--color-gray-400);
     margin-bottom: 20px;
     flex-grow: 1;
     position: relative;
     z-index: 1;
     text-align: center;
     padding: 0 16px;
}
 .service-card__separator {
     height: 1px;
     background: rgba(255, 255, 255, 0.1);
     margin: 12px 0;
     width: 100%;
}
 .service-card__features {
     list-style: none;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
     padding: 0;
}
 .service-card__features li {
     padding: 8px 16px;
     font-size: 0.8rem;
     color: var(--color-gray-300);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin: 0;
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     gap: 8px;
}
 .service-card__features li:last-child {
     border-bottom: none;
}
 .service-card__features li i {
     font-size: 0.7rem;
     color: var(--color-accent-light);
     flex-shrink: 0;
}
 .service-card__pricing {
     display: flex;
     align-items: baseline;
     justify-content: center;
     gap: 6px;
     margin-bottom: 16px;
     position: relative;
     z-index: 1;
     text-align: center;
}
 .price {
     font-family: var(--font-display);
     font-size: 2.2rem;
     font-weight: 800;
     background: var(--gradient-accent);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}
 .period {
     font-size: 0.9rem;
     color: var(--color-gray-400);
}
 .service-card__action {
     text-align: center;
     margin-top: auto;
     padding: 16px;
}
 .btn--service {
     width: 100%;
     background: rgba(59, 130, 246, 0.15);
     color: var(--color-white);
     border: 1px solid rgba(59, 130, 246, 0.3);
     position: relative;
     z-index: 1;
}
 .btn--service:hover {
     background: var(--gradient-accent);
     border-color: transparent;
     box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
 .footer {
     position: relative;
     padding: 80px 0 32px;
     background: var(--gradient-primary);
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}
 .footer__gradient {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
     pointer-events: none;
}
 .footer__content {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
     gap: 48px;
     margin-bottom: 48px;
}
 .footer__brand {
     max-width: 350px;
}
 .footer__logo {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     font-family: var(--font-display);
     font-weight: 700;
     font-size: 1.5rem;
     color: var(--color-white);
     margin-bottom: 20px;
}
 .footer__description {
     font-size: 0.95rem;
     line-height: 1.7;
     color: var(--color-gray-400);
     margin-bottom: 24px;
}
 .footer__social {
     display: flex;
     gap: 12px;
}
 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     color: var(--color-gray-400);
     transition: var(--transition-smooth);
}
 .social-link:hover {
     background: var(--gradient-accent);
     border-color: transparent;
     color: var(--color-white);
     transform: translateY(-4px);
     box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
 .footer__title {
     font-family: var(--font-display);
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--color-white);
     margin-bottom: 20px;
}
 .footer__links, .footer__contact {
     list-style: none;
}
 .footer__links li, .footer__contact li {
     margin-bottom: 12px;
}
 .footer__links a, .footer__contact a {
     display: inline-block;
     color: var(--color-gray-400);
     text-decoration: none;
     font-size: 0.95rem;
     transition: var(--transition-smooth);
}
 .footer__links a:hover, .footer__contact a:hover {
     color: var(--color-accent-light);
     transform: translateX(4px);
}
 .footer__contact li {
     display: flex;
     align-items: center;
     gap: 12px;
}
 .contact__icon {
     font-size: 1.2rem;
}
 .footer__bottom {
     padding-top: 32px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .footer__legal {
     display: flex;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
}
 .footer__legal a {
     color: var(--color-gray-400);
     text-decoration: none;
     font-size: 0.9rem;
     transition: var(--transition-smooth);
}
 .footer__legal a:hover {
     color: var(--color-accent-light);
}
 .separator {
     border-color: 2px solid --color-gray-600;
     border-width: 100%;
}
 .footer__copyright {
     font-size: 0.9rem;
     color: var(--color-gray-500);
}
 @media (max-width: 1200px) {
     .hero__title {
         font-size: 3.5rem;
    }
     .section__title {
         font-size: 3rem;
    }
     .services__grid {
         grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap: 18px;
    }
     .service-card {
         padding: 0;
         min-height: auto;
    }
     .service-card__image {
         margin: 16px 0 16px 0;
         width: 100%;
    }
     .service-card__image img {
         height: 100px;
    }
     .footer__content {
         grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
 @media (max-width: 992px) {
     .nav__menu {
         position: fixed;
         top: 0;
         right: -100%;
         width: 100%;
         max-width: 400px;
         height: 100vh;
         background: rgba(17, 24, 39, 0.98);
         backdrop-filter: blur(20px);
         padding: 80px 32px 32px;
         transition: var(--transition-smooth);
         box-shadow: var(--shadow-xl);
         border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
     .nav__menu.show-menu {
         right: 0;
    }
     .nav__list {
         flex-direction: column;
         align-items: stretch;
         gap: 4px;
    }
     .nav__link {
         padding: 16px 20px;
    }
     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
         margin-top: 8px;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
    }
     .dropdown.active .dropdown-menu {
         max-height: 400px;
    }
     .nav__toggle {
         display: flex;
         flex-direction: column;
         gap: 6px;
         cursor: pointer;
         z-index: 10;
    }
     .nav__toggle span {
         width: 28px;
         height: 3px;
         background: var(--color-white);
         border-radius: 2px;
         transition: var(--transition-smooth);
    }
     .nav__toggle.active span:nth-child(1) {
         transform: rotate(45deg) translate(8px, 8px);
    }
     .nav__toggle.active span:nth-child(2) {
         opacity: 0;
    }
     .nav__toggle.active span:nth-child(3) {
         transform: rotate(-45deg) translate(8px, -8px);
    }
     .nav__close {
         display: block;
         position: absolute;
         top: 24px;
         right: 24px;
         font-size: 2rem;
         color: var(--color-white);
         cursor: pointer;
         width: 40px;
         height: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 8px;
         transition: var(--transition-smooth);
    }
     .nav__close:hover {
         background: rgba(255, 255, 255, 0.1);
    }
     .hero__container {
         grid-template-columns: 1fr;
         gap: 40px;
    }
     .hero__visual {
         height: 400px;
         order: -1;
    }
     .hero__stats {
         grid-template-columns: repeat(2, 1fr);
    }
     .advantages__grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .services__grid {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 16px;
    }
     .service-card {
         min-height: auto;
    }
     .service-card__title {
         font-size: 1.2rem;
    }
     .service-card__description {
         font-size: 0.8rem;
    }
     .price {
         font-size: 2rem;
    }
     .footer__content {
         grid-template-columns: repeat(2, 1fr);
    }
     .footer__brand {
         grid-column: 1 / -1;
         max-width: 100%;
    }
}
 @media (max-width: 768px) {
     html {
         font-size: 14px;
    }
     .hero__title {
         font-size: 2.8rem;
    }
     .hero__description {
         font-size: 1.1rem;
    }
     .hero__cta {
         flex-direction: column;
         align-items: stretch;
    }
     .btn--large {
         width: 100%;
    }
     .section__title {
         font-size: 2.5rem;
    }
     .advantages__grid {
         grid-template-columns: 1fr;
    }
     .footer__bottom {
         flex-direction: column;
         gap: 20px;
         text-align: center;
    }
     .footer__legal {
         justify-content: center;
    }
}
 @media (max-width: 480px) {
     .nav {
         height: 70px;
    }
     .nav__logo {
         font-size: 1.2rem;
    }
     .hero__title {
         font-size: 2.2rem;
    }
     .hero__stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
    }
     .stat__number {
         font-size: 2rem;
    }
     .section__title {
         font-size: 2rem;
    }
     .floating-card {
         padding: 16px;
    }
     .card__icon {
         font-size: 2rem;
    }
     .card__value {
         font-size: 1.2rem;
    }
     .services__grid {
         grid-template-columns: 1fr;
         max-width: 380px;
         margin: 0 auto;
    }
     .service-card {
         min-height: auto;
         padding: 0;
    }
     .service-card__image {
         margin: 16px 0 16px 0;
         width: 100%;
    }
     .service-card__image img {
         height: 100px;
    }
     .service-card__features li {
         font-size: 0.75rem;
         padding: 6px 14px;
    }
     .footer__content {
         grid-template-columns: 1fr;
         gap: 32px;
    }
}
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background: var(--color-darker);
}
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(180deg, rgba(59, 130, 246, 0.5) 0%, rgba(37, 99, 235, 0.5) 100%);
     border-radius: 6px;
     border: 2px solid var(--color-darker);
}
 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(180deg, rgba(59, 130, 246, 0.7) 0%, rgba(37, 99, 235, 0.7) 100%);
}
 ::selection {
     background: rgba(59, 130, 246, 0.3);
     color: var(--color-white);
}
