/* ========================================
   AISAYT.UZ - Premium 2026 Design
   Modern, Animated, Professional
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --black: #000000;
    --white: #FFFFFF;

    /* Dark Theme */
    --bg-100: #030712;
    --bg-200: #0a0f1a;
    --bg-300: #111827;
    --bg-400: #1f2937;

    /* Accent Colors */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #06B6D4;
    --tertiary: #F472B6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    --gradient-secondary: linear-gradient(135deg, #F472B6 0%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, #030712 100%);

    /* Text */
    --text-100: #F9FAFB;
    --text-200: #E5E7EB;
    --text-300: #9CA3AF;
    --text-400: #6B7280;

    /* Effects */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glow: 0 0 40px rgba(139, 92, 246, 0.4);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Timing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.3s;
}

/* Light Theme */
[data-theme="light"] {
    --bg-100: #FFFFFF;
    --bg-200: #F8FAFC;
    --bg-300: #F1F5F9;
    --bg-400: #E2E8F0;
    --text-100: #0F172A;
    --text-200: #1E293B;
    --text-300: #475569;
    --text-400: #94A3B8;
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --glow: 0 0 40px rgba(124, 58, 237, 0.25);
}

/* Light mode specific overrides */
[data-theme="light"] .header-inner {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-gradient-1 {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-2 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .service-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .testimonial-card {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-glass {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-glass:hover {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .contact-form-wrapper {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: var(--bg-200);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mockup-browser,
[data-theme="light"] .mockup-phone {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .floating-badge {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .client-item {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .step-content {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .particle {
    background: var(--primary);
    opacity: 0.12;
}

[data-theme="light"] .cursor-glow {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .preloader {
    background: var(--white);
}

[data-theme="light"] .back-to-top {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

[data-theme="light"] .lang-btn,
[data-theme="light"] .theme-toggle {
    background: var(--bg-300);
}

[data-theme="light"] .lang-dropdown {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-100);
    color: var(--text-200);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(139, 92, 246, 0.3);
    color: var(--white);
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.preloader-logo-img {
    height: 80px;
    width: auto;
    animation: pulse-logo 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

[data-theme="light"] .preloader-logo-img {
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.3));
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
    }
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-300);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: loading 1.5s ease-out forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   PARTICLES & CURSOR
   ======================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-100px) translateX(50px);
    }

    50% {
        transform: translateY(-50px) translateX(-30px);
    }

    75% {
        transform: translateY(-150px) translateX(20px);
    }
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration) var(--ease);
}

.header.scrolled {
    padding: 8px 0;
}

.header.scrolled .header-inner {
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    border-color: var(--border);
    box-shadow: var(--shadow);
}

[data-theme="light"] .header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}

[data-theme="light"] .header-inner {
    background: rgba(255, 255, 255, 0.7);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: all var(--duration) var(--ease);
}

.logo:hover .logo-img {
    opacity: 0.8;
}

/* Dark mode - logo is dark, so invert it to white */
[data-theme="dark"] .logo-img,
:root:not([data-theme="light"]) .logo-img {
    filter: brightness(0) invert(1);
}

/* Light mode - keep original dark logo */
[data-theme="light"] .logo-img {
    filter: none;
}

/* Footer logo - slightly larger */
.footer-brand .logo-img {
    height: 40px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-300);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-100);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width var(--duration) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.theme-toggle:hover {
    background: var(--bg-400);
    border-color: var(--border-hover);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text-200);
    position: absolute;
    transition: all var(--duration) var(--ease-out);
}

.theme-icon-light {
    opacity: 0;
    transform: translateY(20px) rotate(-90deg);
}

.theme-icon-dark {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: translateY(-20px) rotate(90deg);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-200);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.lang-btn:hover {
    background: var(--bg-400);
    border-color: var(--border-hover);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
}

.lang-icon {
    transition: transform var(--duration);
}

.lang-switcher.active .lang-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--duration) var(--ease-out);
    overflow: hidden;
    z-index: 100;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 14px;
    color: var(--text-300);
    cursor: pointer;
    transition: all var(--duration);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-100);
}

.lang-option.active {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-100);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hide-mobile {
    display: inline-flex;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-glow {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--duration);
    z-index: -1;
}

.btn-glow:hover::before {
    opacity: 0.6;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-100);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-100);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

/* Hero Title */
.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-100);
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.title-highlight {
    position: relative;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
}

.title-underline path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 1.5s ease-out forwards 0.5s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: var(--text-300);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: inline;
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    display: inline;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-400);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Browser Mockup */
.mockup-browser {
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-300);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #EF4444;
}

.browser-dots span:nth-child(2) {
    background: #F59E0B;
}

.browser-dots span:nth-child(3) {
    background: #22C55E;
}

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-200);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-400);
}

.browser-url svg {
    width: 12px;
    height: 12px;
    color: #22C55E;
}

.browser-content {
    padding: 20px;
    min-height: 200px;
}

.mock-nav {
    height: 8px;
    width: 60%;
    background: var(--bg-400);
    border-radius: 4px;
    margin-bottom: 20px;
}

.mock-hero {
    margin-bottom: 20px;
}

.mock-text {
    height: 12px;
    background: var(--bg-400);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mock-text.short {
    width: 60%;
}

.mock-btn {
    width: 80px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 6px;
    margin-top: 16px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-card {
    height: 60px;
    background: var(--bg-300);
    border-radius: var(--radius-sm);
}

/* Phone Mockup */
.mockup-phone {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 120px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow);
    animation: float-up 3s ease-in-out infinite 0.5s;
}

.phone-notch {
    width: 40%;
    height: 4px;
    background: var(--bg-400);
    border-radius: var(--radius-full);
    margin: 0 auto 8px;
}

.phone-content {
    padding: 8px;
}

.phone-header {
    height: 6px;
    background: var(--bg-400);
    border-radius: 3px;
    margin-bottom: 12px;
}

.phone-card {
    height: 30px;
    background: var(--bg-300);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-100);
    box-shadow: var(--shadow);
    animation: float-badge 4s ease-in-out infinite;
}

.floating-badge svg {
    width: 14px;
    height: 14px;
}

.badge-react {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-speed {
    top: 50%;
    right: -40px;
    animation-delay: 1s;
}

.badge-speed svg {
    color: #F59E0B;
}

.badge-secure {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.badge-secure svg {
    color: #22C55E;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-400);
    font-size: 12px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* ========================================
   CLIENTS
   ======================================== */
.clients {
    padding: 40px 0;
    background: var(--bg-100);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.clients-track {
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-slide {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-track:hover .clients-slide {
    animation-play-state: paused;
}

.client-item {
    flex-shrink: 0;
    padding: 12px 28px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}

.client-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-300);
}

.client-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-100);
    white-space: nowrap;
}

.gold {
    color: #D4A017;
}

.cyan {
    color: #06B6D4;
}

.purple {
    color: #8B5CF6;
}

.green {
    color: #22C55E;
}

.orange {
    color: #F59E0B;
}

.pink {
    color: #F472B6;
}

/* ========================================
   SECTION HEADER
   ======================================== */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-400);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: var(--bg-200);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, var(--bg-100) 100%);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
}

.service-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    filter: blur(16px);
    opacity: 0.3;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.service-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-100);
}

.service-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-400);
}

.service-time svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    background: var(--bg-100);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
}

.process-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    animation: line-grow 2s ease-out forwards;
}

@keyframes line-grow {
    to {
        width: 100%;
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-content {
    padding: 24px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-400);
    line-height: 1.5;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio {
    background: var(--bg-200);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-300);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-100);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    transition: all var(--duration) var(--ease);
}

.portfolio-image {
    position: relative;
    height: 280px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    width: fit-content;
}

.portfolio-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    backdrop-filter: blur(8px);
    transform: translateY(-10px);
    opacity: 0;
    transition: all var(--duration) var(--ease);
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--black);
}

.portfolio-link svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: var(--bg-100);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 32px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-200) 100%);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-400);
}

.pricing-price {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-100);
}

.price-currency {
    font-size: 14px;
    color: var(--text-400);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-200);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-features li.included svg {
    color: #22C55E;
}

.pricing-features li.disabled {
    color: var(--text-400);
}

.pricing-features li.disabled svg {
    color: #EF4444;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--bg-200);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 28px;
    background: var(--bg-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: #F59E0B;
    fill: #F59E0B;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-200);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-100);
}

.author-role {
    font-size: 12px;
    color: var(--text-400);
}

/* ========================================
   CTA
   ======================================== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    background: var(--bg-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.contact-card:hover {
    border-color: var(--primary);
    background: var(--bg-300);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-card-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-400);
    margin-bottom: 2px;
}

.contact-card-content span {
    font-size: 15px;
    color: var(--text-100);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-300);
    transition: all var(--duration) var(--ease);
}

.social-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 40px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-100);
    transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-200);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-400);
    margin: 20px 0;
    max-width: 280px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-300);
    transition: all var(--duration) var(--ease);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-400);
    margin-bottom: 12px;
    transition: color var(--duration);
}

.footer-links a:hover {
    color: var(--text-100);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-400);
}

.made-with .heart {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration) var(--ease);
    z-index: 100;
    box-shadow: var(--glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-item {
    opacity: 0;
    transform: translateY(30px);
}

.animate-item.visible {
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        background: var(--bg-100);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration) var(--ease);
        z-index: 99;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 24px;
        padding: 16px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-scroll {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}