/* montserrat-regular - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-cyrillic_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v31-cyrillic_latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-v31-cyrillic_latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-cyrillic_latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Dark Theme (Default) */
    --bg-color: #0b0b0d;
    --bg-gradient-start: rgba(255, 209, 102, 0.1);
    --bg-gradient-end: rgba(11, 11, 13, 0.95);
    --text-primary: #f5f5f5;
    --text-secondary: rgba(245, 245, 245, 0.7);
    --text-tertiary: rgba(245, 245, 245, 0.85);
    --accent-color: #ffd166;
    --accent-gradient: linear-gradient(135deg, #ffb703, #ffd166);
    --glass-bg: rgba(18, 18, 22, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --header-bg: rgba(11, 11, 13, 0.85);
    --header-border: rgba(255, 255, 255, 0.06);
    --btn-primary-text: #0b0b0d;
    --btn-ghost-bg: rgba(255, 255, 255, 0.04);
    --btn-ghost-border: rgba(255, 255, 255, 0.12);
    --card-bg: rgba(17, 17, 20, 0.55);
    --card-border: rgba(255, 255, 255, 0.06);
    --timeline-line: linear-gradient(180deg, rgba(255, 209, 102, 0.3), transparent);
    --pricing-table-bg: rgba(17, 17, 20, 0.5);
    --pricing-row-border: rgba(255, 255, 255, 0.07);
    --footer-bg: rgba(5, 5, 7, 0.85);
    --footer-border: rgba(255, 255, 255, 0.05);
    --ripple-dark: rgba(0, 0, 0, 0.2);
    --ripple-light: rgba(255, 255, 255, 0.45);
}

html,
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at top, var(--bg-gradient-start), var(--bg-gradient-end)), var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* Плавный переход для смены темы */
    transition: color 0.4s ease, background-color 0.4s ease;
}

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

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

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    backdrop-filter: blur(12px);
}

.section {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.section + .section {
    margin-top: clamp(1rem, 3vw, 2.5rem);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.section-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: 0.02em;
}

.section-header p {
    color: var(--text-secondary);
    margin-top: 0.6rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--header-border);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.brand-name {
    font-size: 0.95rem;
    color: var(--accent-color);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-tertiary);
    position: relative;
    transition: color 0.3s ease;
}

.mobile-only {
    display: none;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav a.active {
    color: var(--accent-color);
}
.main-nav a.active::after {
    transform: scaleX(1);
}
.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--accent-color);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.btn.primary {
    background: var(--accent-gradient);
    color: var(--btn-primary-text);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.35);
}

.btn.primary:hover,
.btn.primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 183, 3, 0.45);
}

.btn.secondary {
    background: color-mix(in srgb, var(--accent-color) 16%, transparent);
    color: var(--accent-color);
    border: 1px solid rgba(255, 209, 102, 0.4);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    background: rgba(255, 209, 102, 0.24);
    transform: translateY(-2px);
}

.btn.ghost {
    background: var(--btn-ghost-bg);
    color: var(--text-tertiary);
    border: 1px solid var(--btn-ghost-border);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
    color: var(--accent-color);
    border-color: rgba(255, 209, 102, 0.45);
    transform: translateY(-2px);
}

.btn.large {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
}

.hero {
    position: relative;
    min-height: clamp(60vh, 72vw, 85vh);
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at center, rgba(255, 183, 3, 0.25), transparent 55%);
    transform: scale(1.2);
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#equalizer {
    width: 100%;
    height: 100%;
}

.eq-bar {
    fill: var(--accent-color);
}
.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.2;
}

.hero p {
    margin-top: 1.25rem;
    max-width: 680px;
    color: var(--text-tertiary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cards-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.card:hover,
.card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 209, 102, 0.35);
}

.timeline {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: grid;
    gap: 1.75rem;
}

.timeline li {
    position: relative;
    padding-left: 2.5rem;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 209, 102, 0.17);
}

.timeline li::after {
    content: "";
    position: absolute;
    left: 1.45rem;
    top: 1.5rem;
    bottom: -1.75rem;
    width: 1px;
    background: var(--timeline-line);
}

.timeline li:last-child::after {
    display: none;
}

.step h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.step p {
    margin: 0;
    color: var(--text-secondary);
}

.extras {
    text-align: center;
    margin-top: 2.5rem;
}

.content-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
}

.cta-stack {
    display: grid;
    gap: 1rem;
}

.pricing-table {
    background: var(--pricing-table-bg);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1.1rem 1.75rem;
    border-bottom: 1px solid var(--pricing-row-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.unavailable {
    color: color-mix(in srgb, var(--text-primary) 55%, transparent);
    font-style: italic;
}

.payment-info {
    margin-top: 2rem;
    text-align: center;
    color: rgba(245, 245, 245, 0.78);
    display: grid;
    gap: 1rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0; /* Убирает лишний отступ под картой */
}

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

.social {
    display: grid;
    gap: 1rem;
}

.site-footer {
    padding: 2.5rem 0;
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    text-align: center;
}

.footer-content {
    display: grid;
    gap: 1.25rem;
    justify-items: center;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--btn-ghost-border);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking in flex container */
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.theme-toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transform: scale(0.8);
}

.theme-toggle-icon::before,
.theme-toggle-icon::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Sun */
.theme-toggle-icon::before {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scale(1);
}

/* Moon */
.theme-toggle-icon::after {
    width: 80%;
    height: 80%;
    top: -1px;
    left: 3px;
    background: var(--bg-color);
    transform: scale(0);
}

html[data-theme="light"] .theme-toggle-icon::before { transform: scale(0); }
html[data-theme="light"] .theme-toggle-icon::after { transform: scale(1); }


@media (max-width: 960px) {
    .main-nav ul {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 20%;
        right: auto;
        margin: 0;
        background: color-mix(in srgb, var(--header-bg) 95%, transparent);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        width: min(245px, 80vw);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    }

    .main-nav ul.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        width: 100%;
        text-align: center;
    }

    .mobile-only {
        display: block;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .header-content {
        align-items: center;
    }

    .main-nav {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

}

[data-animate] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: var(--ripple-dark);
    pointer-events: none;
}

.btn.primary .ripple {
    background: var(--ripple-light);
}

@keyframes ripple {
    to {
        transform: scale(12);
        opacity: 0;
    }
}

@media (hover: hover) {
    .card:hover .btn,
    .card:focus-within .btn {
        transform: translateY(-2px);
    }
}

/* Floating Telegram Button */
.floating-tg {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: var(--btn-primary-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Keep for hover */
    overflow: hidden; /* For ripple effect */
    animation: pulse 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.floating-tg:hover {
    animation-play-state: paused; /* Stop pulsing on hover */
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px 0px color-mix(in srgb, var(--accent-color) 40%, transparent);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 13px 28px rgba(0, 0, 0, 0.35), 0 0 30px 0px color-mix(in srgb, var(--accent-color) 60%, transparent);
    }
}

/* Light Theme */
html[data-theme="light"] {
    --bg-color: #f2f3f7;
    --bg-gradient-start: rgba(255, 209, 102, 0.15);
    --bg-gradient-end: rgba(242, 243, 247, 0.95);
    --text-primary: #1c1d21;
    --text-secondary: #5a5c66;
    --text-tertiary: #3d3f47;
    --accent-color: #f59e0b; /* Darker yellow for better contrast on light bg */
    --accent-gradient: linear-gradient(135deg, #f59e0b, #fcae1e);
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(0, 0, 0, 0.07);
    --header-bg: rgba(242, 243, 247, 0.8);
    --header-border: rgba(0, 0, 0, 0.06);
    --btn-primary-text: #ffffff;
    --btn-ghost-bg: rgba(0, 0, 0, 0.03);
    --btn-ghost-border: rgba(0, 0, 0, 0.1);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(0, 0, 0, 0.05);
    --timeline-line: linear-gradient(180deg, rgba(245, 158, 11, 0.4), transparent);
    --pricing-table-bg: rgba(255, 255, 255, 0.65);
    --pricing-row-border: rgba(0, 0, 0, 0.07);
    --footer-bg: rgba(255, 255, 255, 0.7);
    --footer-border: rgba(0, 0, 0, 0.05);
    --ripple-dark: rgba(0, 0, 0, 0.1);
    --ripple-light: rgba(255, 255, 255, 0.4);
}

html[data-theme="light"] .theme-toggle {
    background: #f59e0b;
    border-color: transparent;
}

/* Popup/Modal */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.popup-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}
}
*** End Patcherrnojson code 1 ()Unhandled exception: Traceback (most recent call last):
