@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=JetBrains+Mono:wght@300;400;500&display=swap');
:root {
    --lavender-mist: #F0EBF4;
    --moonlight-linen: #F8F5FA;
    --deep-indigo: #2C3E6B;
    --soft-lavender: #9B8AA6;
    --warm-sand: #E8DDD4;
    --night-charcoal: #1E2433;
    --dusk-slate: #4A4E5A;
    --soft-lavender-gray: #9B9BAA;
    --sidebar-width: 280px;
    --sidebar-collapsed: 80px;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    color: var(--dusk-slate);
    line-height: 1.75;
    background-color: var(--moonlight-linen);
    overflow-x: hidden;
}
strong, p {
    color: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul, ol {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--moonlight-linen);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(248, 245, 250, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(44, 62, 107, 0.1);
    box-shadow: 4px 0 48px rgba(44, 62, 107, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M20 80 Q30 60 50 65 Q70 70 80 50 Q90 30 70 20' fill='none' stroke='rgba(155,138,166,0.08)' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}
.sidebar.scrolled {
    width: var(--sidebar-collapsed);
}
.sidebar-logo {
    padding: 32px 24px;
    text-align: center;
    flex-shrink: 0;
}
.sidebar-logo-mark {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sidebar-logo-mark::before {
    content: '';
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
}
.sidebar-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--night-charcoal);
    line-height: 1.4;
}
.sidebar-logo-subtitle {
    font-family: var(--font-body);
    font-size: 9px;
    color: var(--soft-lavender-gray);
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.sidebar-nav {
    flex: 1;
    padding: 40px 16px;
    overflow-y: auto;
    overflow-x: hidden;
}
.sidebar-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.sidebar-nav-item:hover {
    background: rgba(155, 138, 166, 0.1);
}
.sidebar-nav-item:hover .sidebar-nav-icon {
    color: var(--soft-lavender);
}
.sidebar-nav-item:hover .sidebar-nav-text {
    color: var(--deep-indigo);
}
.sidebar-nav-item.active {
    background: rgba(155, 138, 166, 0.12);
}
.sidebar-nav-item.active .sidebar-nav-icon {
    color: var(--soft-lavender);
}
.sidebar-nav-item.active .sidebar-nav-text {
    color: var(--deep-indigo);
    font-weight: 600;
}
.sidebar-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(44, 62, 107, 0.5);
    transition: color 0.25s ease;
}
.sidebar-nav-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--dusk-slate);
    transition: color 0.25s ease;
    opacity: 1;
}
.sidebar.scrolled .sidebar-nav-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}
.sidebar.scrolled .sidebar-nav-item {
    justify-content: center;
    padding: 14px;
}
.sidebar-footer {
    padding: 24px 16px;
    flex-shrink: 0;
}
.sidebar-cta {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--deep-indigo), #3A4E7B);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(44, 62, 107, 0.2);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.sidebar-cta:hover {
    box-shadow: 0 8px 28px rgba(155, 138, 166, 0.3);
    transform: translateY(-2px);
}
.sidebar-phone {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-lavender);
    text-align: center;
    margin-top: 16px;
    opacity: 1;
}
.sidebar.scrolled .sidebar-phone {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}
.sidebar.scrolled .sidebar-cta {
    padding: 16px;
    font-size: 0;
}
.sidebar.scrolled .sidebar-cta::after {
    content: '★';
    font-size: 18px;
}
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(248, 245, 250, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 62, 107, 0.1);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}
.mobile-logo {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-logo::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
}
.mobile-menu-btn {
    width: 48px;
    height: 48px;
    background: rgba(155, 138, 166, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.mobile-menu-btn:hover {
    background: rgba(155, 138, 166, 0.25);
}
.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--deep-indigo);
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(248, 245, 250, 0.98);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.35s ease;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.mobile-overlay::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(155, 138, 166, 0.15) 0%, rgba(44, 62, 107, 0.08) 40%, transparent 70%);
    filter: blur(100px);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: meshFloat 35s ease-in-out infinite alternate;
    opacity: 0.5;
}
.mobile-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-overlay-close svg {
    width: 28px;
    height: 28px;
    stroke: var(--night-charcoal);
}
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.mobile-nav-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: var(--night-charcoal);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.mobile-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 2px;
}
.mobile-overlay-contact {
    margin-top: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mobile-overlay-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--soft-lavender);
}
.mobile-overlay-address {
    font-size: 12px;
    color: var(--soft-lavender-gray);
    margin-top: 8px;
}
.main-wrapper {
    margin-left: var(--sidebar-width);
    transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-wrapper.sidebar-collapsed {
    margin-left: var(--sidebar-collapsed);
}
.section {
    padding: 100px 80px;
    position: relative;
}
.section-lavender {
    background: var(--lavender-mist);
}
.section-moonlight {
    background: var(--moonlight-linen);
}
.section-indigo {
    background: var(--deep-indigo);
}
.hero {
    min-height: 100vh;
    background: var(--moonlight-linen);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-blob-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(155, 138, 166, 0.15) 0%, rgba(44, 62, 107, 0.08) 40%, transparent 70%);
    filter: blur(100px);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: meshFloat 35s ease-in-out infinite alternate;
    opacity: 0.7;
}
.hero-blob-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(44, 62, 107, 0.1) 0%, rgba(155, 138, 166, 0.06) 50%, transparent 80%);
    filter: blur(120px);
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    animation: meshFloat 40s ease-in-out infinite alternate-reverse;
    opacity: 0.7;
}
@keyframes meshFloat {
    0% {
        transform: translate(0, 0) scale(0.95);
    }
    100% {
        transform: translate(60px, 60px) scale(1.05);
    }
}
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    width: 100%;
    padding: 140px 80px 80px 0;
}
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-moon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}
.hero-moon svg {
    width: 100%;
    height: 100%;
}
.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.88;
    letter-spacing: -0.02em;
    color: var(--night-charcoal);
    margin-bottom: 20px;
    overflow: hidden;
}
.hero-title span {
    display: block;
    animation: revealText 0.7s ease-out forwards;
}
.hero-subtitle {
    font-size: 17px;
    color: var(--dusk-slate);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.5s;
}
.hero-markers {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.6s;
}
.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--soft-lavender);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(155, 138, 166, 0.25));
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: scaleIn 0.6s ease forwards 0.7s;
}
.hero-gallery {
    position: relative;
    height: 500px;
}
.hero-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}
.hero-photo {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}
.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(155, 138, 166, 0.06) 0%, transparent 60%);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.hero-photo-main {
    grid-row: span 2;
}
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(155, 138, 166, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 16px 48px rgba(44, 62, 107, 0.08);
    z-index: 2;
}
.hero-float-card-1 {
    top: 40px;
    right: -20px;
}
.hero-float-card-2 {
    bottom: 60px;
    right: -20px;
}
.hero-float-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--night-charcoal);
}
.hero-float-value {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-lavender-gray);
    margin-top: 4px;
}
@keyframes revealText {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    border-radius: 48px;
    transition: all 0.25s ease-out;
    white-space: nowrap;
    min-height: 44px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--deep-indigo), #3A4E7B);
    color: white;
    box-shadow: 0 8px 28px rgba(44, 62, 107, 0.3);
}
.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(155, 138, 166, 0.4);
    transform: translateY(-3px);
}
.btn-primary:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}
.btn-secondary {
    background: transparent;
    color: var(--night-charcoal);
    border: 2px solid var(--night-charcoal);
}
.btn-secondary:hover {
    border-color: var(--soft-lavender);
    color: var(--soft-lavender);
}
.section-header {
    margin-bottom: 60px;
}
.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-lavender);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--night-charcoal);
    line-height: 1.1;
}
.section-title-light {
    color: white;
}
.slider-section {
    overflow: hidden;
}
.slider-container {
    position: relative;
    padding: 0 80px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(155, 138, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(44, 62, 107, 0.06);
    z-index: 10;
    transition: all 0.25s ease;
    cursor: pointer;
}
.slider-arrow:hover {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    box-shadow: 0 8px 24px rgba(155, 138, 166, 0.2);
}
.slider-arrow:hover svg {
    stroke: white;
}
.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--deep-indigo);
    stroke-width: 2;
}
.slider-arrow-prev {
    left: 0;
}
.slider-arrow-next {
    right: 0;
}
.slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}
.slider-track::-webkit-scrollbar {
    display: none;
}
.service-card {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(155, 138, 166, 0.08);
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 20px 56px rgba(155, 138, 166, 0.15);
    transform: translateY(-4px);
    border-color: rgba(155, 138, 166, 0.15);
}
.service-card-image {
    height: 160px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin: 16px 16px 0;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.service-card-content {
    padding: 24px;
}
.service-card-number {
    width: 48px;
    height: 48px;
    background: rgba(155, 138, 166, 0.1);
    border: 1px solid var(--soft-lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-card-number span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-indigo);
}
.service-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--night-charcoal);
    margin-bottom: 8px;
}
.service-card-text {
    font-size: 14px;
    color: var(--dusk-slate);
    line-height: 1.6;
}
.service-card-price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--soft-lavender);
    margin-top: 12px;
}
.service-card-decor {
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 3px;
    margin-top: 16px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 80px;
}
.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(44, 62, 107, 0.06) 0%, transparent 60%);
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-moon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}
.about-moon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(155, 138, 166, 0.4);
    stroke-width: 2;
    fill: none;
}
.about-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--night-charcoal);
    margin-bottom: 24px;
}
.about-text {
    font-size: 16px;
    color: var(--dusk-slate);
    line-height: 1.8;
}
.about-text p + p {
    margin-top: 16px;
}
.about-dot {
    width: 4px;
    height: 4px;
    background: var(--soft-lavender);
    border-radius: 50%;
    margin: 16px auto;
}
.advantages-grid {
    display: flex;
    gap: 24px;
    padding: 0 80px;
    overflow-x: auto;
    scrollbar-width: none;
}
.advantages-grid::-webkit-scrollbar {
    display: none;
}
.advantage-card {
    flex-shrink: 0;
    width: 300px;
    background: white;
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border-top: 4px solid var(--soft-lavender);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.advantage-card:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.advantage-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}
.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--soft-lavender);
    stroke-width: 2;
    fill: none;
}
.advantage-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--night-charcoal);
    margin-bottom: 12px;
}
.advantage-text {
    font-size: 14px;
    color: var(--soft-lavender-gray);
    line-height: 1.65;
}
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.achievement-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(155, 138, 166, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.achievement-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(155, 138, 166, 0.1);
    border-color: rgba(155, 138, 166, 0.15);
}
.achievement-card:hover .achievement-value {
    color: var(--soft-lavender);
}
.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
}
.achievement-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}
.achievement-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--soft-lavender);
    stroke-width: 2;
    fill: none;
}
.achievement-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    color: var(--night-charcoal);
    line-height: 1;
    transition: color 0.3s ease;
}
.achievement-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--soft-lavender-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}
.testimonials-container {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}
.testimonials-carousel {
    position: relative;
    width: 320px;
    height: 100%;
    transform-style: preserve-3d;
}
.testimonial-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(155, 138, 166, 0.08);
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(44, 62, 107, 0.06);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}
.testimonial-card.active {
    z-index: 100;
    transform: scale(1.08);
    box-shadow: 0 24px 64px rgba(155, 138, 166, 0.12);
}
.testimonial-image {
    height: 120px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.testimonial-content {
    padding: 24px;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}
.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--soft-lavender);
}
.testimonial-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 16px;
    color: var(--dusk-slate);
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--soft-lavender);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--night-charcoal);
}
.testimonial-company {
    font-size: 12px;
    color: var(--soft-lavender-gray);
}
.testimonial-decor {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 4px;
    margin-top: 16px;
}
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(155, 138, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}
.testimonials-nav:hover {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
}
.testimonials-nav:hover svg {
    stroke: white;
}
.testimonials-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--deep-indigo);
    stroke-width: 2;
}
.testimonials-nav-prev {
    left: calc(50% - 200px);
}
.testimonials-nav-next {
    right: calc(50% - 200px);
}
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.contact-form-container {
    padding: 80px 60px;
}
.contact-form-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--night-charcoal);
    margin-bottom: 12px;
}
.contact-form-subtitle {
    font-size: 14px;
    color: var(--soft-lavender-gray);
    margin-bottom: 32px;
}
.form-group {
    position: relative;
    margin-bottom: 32px;
}
.form-label {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-lavender-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
    pointer-events: none;
}
.form-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(30, 36, 51, 0.12);
    background: transparent;
    font-size: 16px;
    color: var(--night-charcoal);
    transition: border-color 0.25s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--soft-lavender);
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    color: var(--soft-lavender);
    top: -16px;
    font-size: 10px;
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.form-submit {
    margin-top: 16px;
}
.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 80px 48px;
    border: 1px solid rgba(155, 138, 166, 0.08);
    box-shadow: 0 16px 56px rgba(44, 62, 107, 0.06);
}
.contact-info-block {
    padding: 24px 0;
}
.contact-info-block + .contact-info-block {
    border-top: 1px solid rgba(155, 138, 166, 0.1);
}
.contact-info-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}
.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--soft-lavender);
    stroke-width: 1.5;
    fill: none;
}
.contact-info-label {
    font-size: 12px;
    color: var(--soft-lavender-gray);
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 16px;
    color: var(--dusk-slate);
}
.contact-map {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(44, 62, 107, 0.06);
}
.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: grayscale(100%);
}
.team-masonry {
    columns: 3;
    column-gap: 24px;
    padding: 0 80px;
}
.team-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(155, 138, 166, 0.08);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: scale(1.03);
    border-color: rgba(155, 138, 166, 0.15);
    box-shadow: 0 16px 48px rgba(155, 138, 166, 0.1);
    z-index: 10;
    position: relative;
}
.team-card-image {
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    margin: -24px -24px 20px;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.team-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}
.team-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--soft-lavender);
    stroke-width: 2;
    fill: none;
}
.team-card-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--night-charcoal);
}
.team-card-role {
    font-size: 12px;
    color: var(--soft-lavender);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.team-card-spec {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--soft-lavender-gray);
    margin-top: 8px;
}
.team-card-decor {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 2px;
    margin-top: 16px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 80px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(155, 138, 166, 0.08);
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(44, 62, 107, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}
.faq-item:nth-child(even) {
    margin-top: 24px;
}
.faq-item.active {
    grid-column: span 2;
    background: rgba(155, 138, 166, 0.04);
    border-left: 4px solid var(--soft-lavender);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--night-charcoal);
}
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--soft-lavender-gray);
    transition: all 0.3s ease;
}
.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--soft-lavender);
}
.faq-item.active .faq-icon::before {
    background: var(--soft-lavender);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 16px;
}
.faq-answer-text {
    font-size: 15px;
    color: var(--dusk-slate);
    line-height: 1.75;
    padding: 0 28px 8px 0;
}
.gallery-masonry {
    columns: 3;
    column-gap: 24px;
    padding: 0 80px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 36, 51, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-caption {
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}
.process-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.process-image {
    position: sticky;
    top: 0;
    height: 100vh;
    border-radius: 0 28px 28px 0;
    overflow: hidden;
}
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(155, 138, 166, 0.08) 0%, transparent 60%);
}
.process-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-lavender), rgba(155, 138, 166, 0.3));
    border-radius: 4px;
}
.process-content {
    padding: 80px 48px;
    position: relative;
}
.process-moon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.process-moon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(155, 138, 166, 0.4);
    stroke-width: 2;
    fill: none;
}
.process-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--night-charcoal);
    margin-bottom: 32px;
}
.process-text {
    font-size: 16px;
    color: var(--dusk-slate);
    line-height: 1.8;
    max-width: 480px;
}
.process-text p + p {
    margin-top: 24px;
}
.process-dot {
    width: 6px;
    height: 6px;
    background: var(--soft-lavender);
    border-radius: 50%;
    margin: 24px auto;
}
.marquee-section {
    background: var(--moonlight-linen);
    padding: 32px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 40px;
}
.marquee-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--night-charcoal);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--soft-lavender);
    border-radius: 50%;
    margin: 0 40px;
    flex-shrink: 0;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.footer {
    background: var(--night-charcoal);
    padding: 80px 80px 40px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 8px;
}
.footer-brand-subtitle {
    font-size: 11px;
    color: var(--soft-lavender);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-brand-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}
.footer-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
    position: relative;
    display: inline-block;
}
.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-lavender);
    transition: width 0.25s ease;
}
.footer-link:hover {
    color: white;
}
.footer-link:hover::after {
    width: 100%;
}
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s ease;
}
.footer-legal a:hover {
    color: var(--soft-lavender);
}
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: rgba(30, 36, 51, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: block;
}
.cookie-banner.hidden {
    display: none;
}
.cookie-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
}
.cookie-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cookie-text a {
    color: var(--soft-lavender);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    border-radius: 20px;
    transition: all 0.25s ease;
}
.cookie-btn-accept {
    background: var(--deep-indigo);
    color: white;
}
.cookie-btn-accept:hover {
    background: var(--soft-lavender);
}
.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--moonlight-linen);
    text-align: center;
    padding: 40px 20px;
}
.thank-you-content {
    max-width: 600px;
}
.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--deep-indigo), var(--soft-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}
.thank-you-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: var(--night-charcoal);
    margin-bottom: 16px;
}
.thank-you-text {
    font-size: 18px;
    color: var(--dusk-slate);
    line-height: 1.7;
    margin-bottom: 32px;
}
.thank-you-btn {
    display: inline-flex;
}
.legal-page {
    min-height: 100vh;
    background: var(--moonlight-linen);
    padding: 160px 80px 80px;
}
.legal-content {
    max-width: 800px;
}
.legal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: var(--night-charcoal);
    margin-bottom: 32px;
}
.legal-section {
    margin-bottom: 32px;
}
.legal-section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--night-charcoal);
    margin-bottom: 12px;
}
.legal-text {
    font-size: 15px;
    color: var(--dusk-slate);
    line-height: 1.8;
}
.legal-text p + p {
    margin-top: 12px;
}
.hero-compact {
    min-height: 280px;
    background: var(--lavender-mist);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(155, 138, 166, 0.08) 0%, transparent 50%);
    filter: blur(120px);
    opacity: 0.4;
}
.hero-compact-content {
    position: relative;
    z-index: 1;
    padding: 120px 80px 60px;
    max-width: 560px;
}
.hero-breadcrumbs {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--soft-lavender-gray);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}
.hero-breadcrumbs a {
    color: inherit;
    transition: color 0.25s ease;
}
.hero-breadcrumbs a:hover {
    color: var(--soft-lavender);
}
.hero-compact-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    color: var(--night-charcoal);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: slideIn 0.5s ease forwards 0.1s;
}
.hero-compact-moon {
    width: 28px;
    height: 28px;
    opacity: 0;
    animation: scaleIn 0.3s ease forwards 0.3s;
}
.hero-compact-moon svg {
    width: 100%;
    height: 100%;
}
.hero-compact-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    opacity: 0;
    animation: scaleIn 0.4s ease forwards 0.4s;
}
.hero-compact-marker {
    width: 6px;
    height: 6px;
    background: var(--soft-lavender);
    border-radius: 50%;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.reveal-fade.visible {
    opacity: 1;
}
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease-out;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease-out;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.6s ease-out;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-moon {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
}
.reveal-moon.visible {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .main-wrapper,
    .main-wrapper.sidebar-collapsed {
        margin-left: 0;
    }
    
    .section {
        padding: 80px 24px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
    }
    .hero-gallery {
        height: 400px;
    }
    .hero-float-card-1 {
        right: 10px;
        top: 20px;
    }
    .hero-float-card-2 {
        right: 10px;
        bottom: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-section {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 60px 24px;
    }
    .contact-info {
        padding: 48px 24px;
        margin: 0 24px 24px;
        border-radius: 24px;
    }
    .footer {
        padding: 60px 24px 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .team-masonry {
        columns: 1;
        padding: 0 24px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .faq-item:nth-child(even) {
        margin-top: 0;
    }
    .faq-item.active {
        grid-column: span 1;
    }
    .gallery-masonry {
        columns: 2;
        padding: 0 24px;
    }
    .process-section {
        grid-template-columns: 1fr;
    }
    .process-image {
        position: relative;
        height: 300px;
        border-radius: 0;
    }
    .process-content {
        padding: 60px 24px;
    }
    .slider-container {
        padding: 0 0px;
    }
    .hero-compact-content {
        padding: 100px 24px 40px;
    }
    .hero-compact-title {
        font-size: 32px;
    }
    .legal-page {
        padding: 120px 24px 60px;
    }
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}
@media (max-width: 640px) {
    .hero-content {
        padding: 100px 16px 40px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-gallery {
        height: 300px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        padding: 0;
    }
    .advantage-card {
        width: 100%;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .gallery-masonry {
        columns: 1;
    }
    .testimonials-container {
        height: auto;
        overflow: visible;
    }
    .testimonials-carousel {
        width: 100%;
        position: relative;
        transform: none !important;
    }
    .testimonial-card {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
        transform: none !important;
    }
    .testimonials-nav {
        display: none;
    }
}