/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (SMOKE BASIC FRANCHISE)
   ========================================================================== */
:root {
    --bg-dark: #09050d;
    --bg-card: rgba(20, 12, 28, 0.6);
    --bg-card-hover: rgba(32, 20, 44, 0.8);
    
    --primary: #9d2be6;
    --primary-glow: rgba(157, 43, 230, 0.4);
    --secondary: #ff8c00;
    --secondary-glow: rgba(255, 140, 0, 0.4);
    --accent: #ff1493;
    
    --text-main: #ffffff;
    --text-muted: #b5a9c0;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(157, 43, 230, 0.4);
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: 
        radial-gradient(circle at 20% 15%, rgba(157, 43, 230, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(255, 140, 0, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 15% 55%, rgba(255, 20, 147, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 65%, rgba(157, 43, 230, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 90%, rgba(255, 140, 0, 0.18) 0%, transparent 45%),
        #060309;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Фоновый холст для эффекта дыма */
#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.005em;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--secondary);
    font-weight: 800;
}

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

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 43, 230, 0.6);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

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

.btn--outline:hover {
    border-color: var(--primary);
    background: rgba(157, 43, 230, 0.1);
    box-shadow: 0 0 15px rgba(157, 43, 230, 0.2);
}

.btn--full {
    width: 100%;
}

.btn--glow {
    position: relative;
    overflow: hidden;
}

.btn--glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn--glow:hover::after {
    opacity: 1;
    left: 120%;
}

/* ==========================================================================
   GLASSMORPHISM BASE
   ========================================================================== */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(157, 43, 230, 0.15);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    margin-bottom: 60px;
}

.section-title__badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(157, 43, 230, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(157, 43, 230, 0.3);
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    padding: 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.header__logo img {
    height: 36px;
    width: auto;
}

.header .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.header__descriptor {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 250px;
    line-height: 1.4;
    border-left: 2px solid var(--primary);
    padding-left: 15px;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.header__phone:hover {
    color: var(--secondary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 80px;
    background: rgba(0, 0, 0, 0.25);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.hero__glow--1 {
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(157, 43, 230, 0.15);
}

.hero__glow--2 {
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 140, 0, 0.08);
}

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 140, 0, 0.15);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 140, 0, 0.3);
    margin-bottom: 20px;
}

.hero__title {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero__features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-feature {
    flex: 1;
}

.hero-feature__num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.hero-feature__text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.hero__cta-box {
    padding: 30px;
}

.hero__cta-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

input[type="text"],
input[type="tel"],
input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(157, 43, 230, 0.2);
}

.form-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
    text-align: left;
}

.form-checkbox {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.form-agreement-text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-agreement-text a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.form-agreement-text a:hover {
    color: var(--secondary);
}

.hero__visual {
    position: relative;
}

.hero__img-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    animation: floatImage 8s ease-in-out infinite;
}

.hero__img {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.hero__img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero__floating-card--1 {
    top: 15%;
    left: -20px;
    animation: floatCard1 4s ease-in-out infinite;
}

.hero__floating-card--2 {
    bottom: 15%;
    right: -20px;
    animation: floatCard2 5s ease-in-out infinite 1s;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 15px 30px rgba(157, 43, 230, 0.2));
    }
    50% {
        transform: translateY(-12px) rotate(0.5deg);
        filter: drop-shadow(0 25px 45px rgba(255, 140, 0, 0.3));
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 15px 30px rgba(157, 43, 230, 0.2));
    }
}

@keyframes floatCard1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes floatCard2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.card-icon {
    font-size: 24px;
}

.hero__floating-card h4 {
    font-size: 16px;
    font-weight: 800;
}

.hero__floating-card p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   FINANCIAL CALCULATOR
   ========================================================================== */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.calc-format-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 5px;
}

.calc-format-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 10px 8px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.calc-format-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

.calc-format-btn.active {
    background: linear-gradient(135deg, rgba(157, 43, 230, 0.25) 0%, rgba(255, 140, 0, 0.25) 100%);
    border-color: var(--secondary);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.25);
}

.calculator__sliders {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.slider-group {
    display: flex;
    flex-direction: column;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.slider-header label {
    font-weight: 700;
    font-size: 15px;
}

.slider-value {
    color: var(--secondary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.calculator__results {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(157, 43, 230, 0.05);
}

.calc-res-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.calc-res-lbl {
    font-size: 15px;
    color: var(--text-muted);
}

.calc-res-val {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
}

/* ==========================================================================
   LEGAL SAFETY & VS BANNER
   ========================================================================== */
.legal-vs-banner {
    padding: 30px 40px;
    margin-bottom: 45px;
    border-color: rgba(255, 20, 147, 0.25);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.06);
}

.legal-vs-banner__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-badge--danger {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.status-badge--success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
}

.legal-vs-banner__content {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 30px;
}

.legal-vs-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.legal-vs-col:first-of-type h4 {
    color: #e74c3c;
}

.legal-vs-col:last-of-type h4 {
    color: #2ecc71;
}

.legal-vs-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.legal-vs-divider {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.legal-card {
    padding: 35px;
}

.legal-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.legal-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.legal-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   MANUFACTURER & CERTIFICATION BLOCK
   ========================================================================== */
.manufacturer {
    background: radial-gradient(circle at 90% 80%, rgba(157, 43, 230, 0.08) 0%, transparent 60%);
}

.manufacturer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.manufacturer__info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.manufacturer__info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.m-benefit {
    display: flex;
    gap: 20px;
}

.m-benefit__icon {
    font-size: 32px;
    line-height: 1;
    margin-top: 2px;
}

.m-benefit h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.m-benefit p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.doc-card {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.05);
}

.doc-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(157, 43, 230, 0.15);
}

.doc-card__preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    aspect-ratio: 1 / 1.41; /* Стандартный формат А4 */
    background: #0f0a14;
}

.doc-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.doc-card__zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 6, 25, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transition: var(--transition-smooth);
}

.doc-card:hover .doc-card__zoom {
    opacity: 1;
}

.doc-card:hover .doc-card__preview img {
    transform: scale(1.05);
}

.doc-card h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.doc-card p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ==========================================================================
   CITY CHECK (MAP CHECK)
   ========================================================================== */
.map-check {
    overflow: hidden;
}

.map-check__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 43, 230, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.map-check__box {
    position: relative;
    z-index: 2;
    padding: 50px;
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.map-check__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-check__visual img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 25px rgba(157, 43, 230, 0.25));
    transition: var(--transition-smooth);
}

.map-check__visual img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 35px rgba(157, 43, 230, 0.4));
}

.map-check__form-col h2 {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.map-check__form-col p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 25px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .map-check__box {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 30px;
        text-align: center;
    }
    .map-check__form-col {
        text-align: left;
    }
    .map-check__visual img {
        max-width: 360px;
    }
}

/* ==========================================================================
   FRANCHISE FORMATS
   ========================================================================== */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.format-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.format-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.format-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.format-card__img {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.format-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.format-card:hover .format-card__img img {
    transform: scale(1.08);
}

.format-card__features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.format-card__features li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.format-card__features li:last-child {
    border-bottom: none;
}

.format-card__features li strong {
    color: var(--text-muted);
}

.format-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(157, 43, 230, 0.1);
}

.format-card.highlighted .format-card__badge {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   SUPPORT SYSTEM
   ========================================================================== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-item {
    padding: 35px;
}

.support-item__num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(157, 43, 230, 0.2);
    line-height: 1;
    margin-bottom: 15px;
}

.support-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.support-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item::after {
    content: '🔍 Посмотреть';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 6, 25, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
}

.faq-item__header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item__header h4 {
    font-size: 16px;
    font-weight: 700;
}

.faq-item__icon {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 14px;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-item__content {
    max-height: 1000px;
    padding-bottom: 25px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 60px;
    align-items: center;
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(157, 43, 230, 0.08);
}

.final-cta__text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta__text p {
    color: var(--text-muted);
}

.final-cta__form input {
    margin-bottom: 15px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-sec {
    background: #060309;
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__disclaimer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
}

.warning-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-align: center;
}

.legal-text {
    font-size: 11px;
    color: var(--text-muted);
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

.footer__logo {
    height: 35px;
    margin-bottom: 15px;
}

.footer__brand p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 15px;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer__link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.footer__link--website:hover {
    color: var(--secondary);
}

.footer__link--vk:hover {
    color: #5181b8;
}

.footer__link--tg:hover {
    color: #0088cc;
}

.footer__legal {
    text-align: right;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   MODAL WINDOWS & DOCUMENT VIEW
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(9, 5, 13, 0.7);
    backdrop-filter: blur(8px);
    top: 0;
    left: 0;
}

.modal__content {
    position: relative;
    width: 90%;
    max-width: 480px;
    padding: 40px;
    z-index: 2;
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(157, 43, 230, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal__close:hover {
    color: #fff;
}

.modal h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.success-checkmark {
    font-size: 50px;
    margin-bottom: 15px;
}

.success-logo-spin {
    width: 90px;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
    animation: logo-spin-3d 5s linear infinite;
    filter: drop-shadow(0 0 15px rgba(157, 43, 230, 0.4));
}

@keyframes logo-spin-3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Модалка для документов */
.modal__content--doc {
    max-width: 550px;
    padding: 30px;
}

.modal__doc-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin: 20px auto;
    max-height: 60vh;
    background: #000;
}

.modal__doc-img-wrap img {
    max-height: 60vh;
    width: 100%;
    object-fit: contain;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        display: flex;
        justify-content: center;
    }
    
    .hero__img {
        transform: none !important;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .manufacturer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-vs-banner {
        padding: 20px;
    }
    
    .legal-vs-banner__header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .legal-vs-banner__content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legal-vs-divider {
        display: none;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .manufacturer__info {
        padding: 20px;
    }
    
    .manufacturer__docs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-cta__wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .header__descriptor {
        display: none;
    }
    
    .footer__container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer__legal {
        text-align: center;
    }
    
    .city-checker__input-wrap {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .manufacturer__docs {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(15, 12, 28, 0.75);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(157, 43, 230, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(157, 43, 230, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
    z-index: 99999;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-banner__text a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.cookie-banner__text a:hover {
    color: var(--secondary);
}

.cookie-banner__btn {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    min-width: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 15px;
        width: calc(100% - 30px);
        padding: 12px 18px;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-banner__btn {
        width: 100%;
    }
}
