:root {
    --color-dark: #050505;
    --color-surface: #121212;
    --color-border: #2a2a2a;
    --color-border-hover: #555555;
    --text-main: #e5e5e5;
    --text-main-reverse: #111827;
    --text-muted: #a3a3a3;
    --logo-color: #ffffff;
    --blob-white: #ffffff;
    --nav-bg: rgba(5, 5, 5, 0.7);
    --nav-shadow: rgba(0, 0, 0, 0.5);
    --btn-bg: #f8f9fa;
    --btn-text: #050505;
    --btn-bg-hover: #d8d8d8;
    --glass-bg: rgba(18, 18, 18, 0.4);
    --glass-text: #d1d5db;
    --section-alt-bg: rgba(18, 18, 18, 0.4);
    --feature-icon-bg: #1a1a1a;
    --pricing-card-bg: rgba(18, 18, 18, 0.6);
    --ddos-bg: linear-gradient(315deg, rgba(255, 255, 255, 0.08) 0%, rgba(130, 130, 130, 0.03) 50%, rgba(255, 255, 255, 0) 100%), rgba(20, 20, 20, 0.6);
    --terminal-header: #181818;
    --terminal-body: #1f1f1f;
    --terminal-gray: #8b949e;
    --cmd-blue: #53b9fe;
    --cmd-yellow: #d7ba7d;
    --cmd-text: #c9d1d9;
    --list-bg: rgba(255, 255, 255, 0.1);
    --cta-card-bg: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
    --footer-text: #808080;
    --selection-bg: #ffffff;
    --selection-text: #000000;
    --hero-image-pc-color: #343536;
    --hero-image-bg: #121212;
    --hero-image-elements-color: #6E6E6E;
    --hero-image-hover-bg: #ffffff;
    --hero-image-person-white: #ffffff;
    --hero-image-person-boots: #F2F0EF;
    --error-image-bg: rgba(18, 18, 18, 0.8);
    --schema-icon-bg: #1a1a1a;
}

body.light {
    --color-dark: #f8f9fa;
    --color-surface: #ffffff;
    --color-border: #e5e7eb;
    --color-border-hover: #c2c2c4;
    --text-main: #111827;
    --text-main-reverse: #e5e5e5;
    --text-muted: #686868;
    --logo-color: #000000;
    --blob-white: #b2b2b2;
    --nav-bg: rgba(248, 249, 250, 0.8);
    --nav-shadow: rgba(0, 0, 0, 0);
    --btn-bg: #111827;
    --btn-text: #ffffff;
    --btn-bg-hover: #313131;
    --glass-bg: #ffffff;
    --glass-text: #4b5563;
    --section-alt-bg: rgba(0, 0, 0, 0.01);
    --feature-icon-bg: rgba(0, 0, 0, 0.01);
    --pricing-card-bg: #ffffff;
    --ddos-bg: linear-gradient(315deg, rgba(0, 0, 0, 0.08) 0%, rgba(130, 130, 130, 0.03) 50%, rgba(0, 0, 0, 0) 100%), rgba(255, 255, 255, 0.8);
    --terminal-header: #ffffff;
    --terminal-body: #ffffff;
    --terminal-gray: #686f76;
    --cmd-blue: #2970c1;
    --cmd-yellow: #795e26;
    --cmd-text: #3b3b3b;
    --list-bg: rgba(0, 0, 0, 0.01);
    --cta-card-bg: #ffffff;
    --footer-text: #878787;
    --selection-bg: #000000;
    --selection-text: #ffffff;
    --hero-image-pc-color: #8e8e8f;
    --hero-image-bg: #f5f5f5;
    --hero-image-elements-color: rgba(0, 0, 0, 0.1);
    --hero-image-hover-bg: #f2f3f5;
    --hero-image-person-white: #ffffff;
    --hero-image-person-boots: #969696;
    --error-image-bg: rgba(245, 245, 245, 0.8);
    --schema-icon-bg: #FCFCFC;
}

@font-face {
    font-family: 'Inter';
    src: url('./Inter.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: all 0.2s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px var(--nav-shadow);
    transition:
        max-height 0.25s linear,
        background 0.2s ease,
        backdrop-filter 0.2s ease,
        -webkit-backdrop-filter 0.2s ease,
        box-shadow 0.2s ease;
    max-height: 70px;
    overflow: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 15px 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--logo-color);
}

.logo span:first-child {
    font-weight: 800;
}

.logo span:last-child {
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-panel {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    max-height: 40px;
}

.btn-panel:hover {
    background-color: var(--btn-bg-hover);
}

.btn-primary {
    padding: 16px 32px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--btn-bg-hover);
}

.btn-primary:disabled:hover {
    background-color: var(--btn-bg);
    cursor: not-allowed;
}

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--color-border-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    max-width: 30px;
    max-height: 30px;
    transition: all 0.2s ease;
}

.mobile-menu {
    padding: 2rem;
    text-align: center;
}

.mobile-menu-link {
    display: block;
    padding: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-menu a:hover {
    color: var(--text-main);
}

.mobile-menu-panel {
    margin-top: 0.5rem;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 70px);
    margin-top: 80px;
    position: relative;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 40px 0;
}

.hero-subpage {
    position: relative;
    display: flex;
    align-items: start;
    padding: 96px 0;
    margin-top: 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-info {
    position: relative;
    z-index: 10;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

.blur-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.blob-white {
    background-color: var(--blob-white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    background: var(--section-alt-bg);
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.badge:hover {
    border-color: var(--color-border-hover);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--glass-text);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(to right, var(--text-main) 40%, var(--text-muted) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--text-main);
}

.hero-graphic-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic-wrapper svg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

.stats-section {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--section-alt-bg);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
}

.stats-divider {
    width: 1px;
    background: var(--color-border);
    height: 100%;
    transition: background 0.2s ease;
}

.stat-icon {
    color: var(--text-main);
}

.stat-icon svg {
    width: 56px;
    height: 56px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-section {
    padding: 96px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px auto;
    position: relative;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    height: 100%;
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background-color: var(--feature-icon-bg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--text-main);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.discord-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.discord-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.discord-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.discord-list {
    list-style: none;
    margin-bottom: 32px;
    transition: all 0.2s ease;
}

.discord-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--list-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-main);
}

.terminal-window {
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    overflow: hidden;
    font-family: monospace;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.terminal-header {
    background-color: var(--terminal-header);
    border-bottom: 1px solid var(--color-border);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background-color: #FF605C;
}

.dot-yellow {
    background-color: #FFBD44;
}

.dot-green {
    background-color: #00CA4E;
}

.terminal-title {
    color: var(--terminal-gray);
    font-size: 0.75rem;
    margin-left: 8px;
}

.terminal-body {
    background-color: var(--terminal-body);
    padding: 1rem;
    color: var(--cmd-text);
    line-height: 1.6;
}

.cmd-install {
    color: #7ee787;
}

.cmd-gray {
    color: var(--terminal-gray);
}

.cmd-blue {
    color: var(--cmd-blue);
}

.cmd-yellow {
    color: var(--cmd-yellow);
}

.cmd-success-bg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #34d399;
}

.cmd-br {
    margin-bottom: 1rem;
}

.pricing-section {
    padding: 96px 0;
    position: relative;
    z-index: 10;
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 520px));
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--pricing-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: end;
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.pricing-price-highlighted {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
}

.pricing-features li svg {
    width: 22px;
    height: 22px;
    color: var(--text-main);
}

.pricing-card-highlighted-white {
    background-color: var(--pricing-card-bg);
    border: 2px solid var(--text-main);
    color: var(--text-main);
    position: relative;
    box-shadow: 0 25px 55px rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
}

.highlight-badge-white {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--btn-bg);
    color: var(--text-main-reverse);
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-pricing-outline {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--text-main);
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-pricing-outline:hover {
    border-color: var(--color-border-hover);
}

.btn-pricing-filled-dark {
    width: 100%;
    padding: 16px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-pricing-filled-dark:hover {
    background-color: var(--btn-bg-hover);
}

.pricing-footer {
    text-align: center;
    margin-top: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-footer-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-expand-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-expand-offer:hover {
    background-color: #ffffff;
    color: var(--color-dark);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.ddos-section {
    padding: 60px 0 96px 0;
    position: relative;
    z-index: 10;
}

.ddos-card {
    background: var(--ddos-bg);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.ddos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .ddos-grid {
        grid-template-columns: 1.4fr 0.6fr;
    }
}

.ddos-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.ddos-title {
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.ddos-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-ddos-wrapper {
    margin-top: 16px;
}

.btn-ddos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.btn-ddos-phone-hide {
    display: inline-flex;
}

.btn-ddos-phone-show {
    display: none;
}

.btn-ddos:hover {
    border-color: var(--color-border-hover);
}

.btn-ddos-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
}

.btn-ddos:hover .btn-ddos-icon {
    transform: translateX(4px);
}

.ddos-graphic-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .ddos-graphic-container {
        justify-content: flex-end;
    }
}

.ddos-svg {
    width: 100%;
    max-width: 250px;
    height: auto;
    transition: transform 0.5s ease;
}

.ddos-svg:hover {
    transform: scale(1.03);
}

@media (min-width: 576px) {
    .ddos-svg {
        max-width: 270px;
    }
}

@media (min-width: 768px) {
    .ddos-svg {
        max-width: 290px;
    }
}

@media (min-width: 1024px) {
    .ddos-svg {
        max-width: 310px;
    }
}

.opinie-section {
    padding: 96px 0;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(to bottom, var(--color-dark), var(--color-surface));
    position: relative;
    z-index: 10;
}

.opinie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.spotlight-card {
    position: relative;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(300px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 1;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.spotlight-card>* {
    position: relative;
    z-index: 10;
}

.opinion-author-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.opinion-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    margin-right: 16px;
}

.opinion-meta-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
}

.opinion-meta-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stars-row {
    display: flex;
    gap: 4px;
    color: #eab308;
    margin-bottom: 16px;
}

.stars-row svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.opinion-text {
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
}

.reasons-section {
    padding: 96px 0;
    position: relative;
    z-index: 10;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 0.5fr 1.2fr;
    gap: 7rem;
    align-items: center;
}

.reasons-left h2 {
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.reasons-left p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    transition: color 0.2s ease;
}

.reasons-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.reason-card {
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    height: 100%;
}

.reason-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.reason-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background-color: var(--feature-icon-bg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.reason-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--text-main);
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.reason-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.reason-card-large {
    grid-column: span 2;
}

.cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.cta-card {
    background: var(--cta-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.2s ease;
}

.cta-bg-shine {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.1);
    opacity: 0.02;
    pointer-events: none;
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

footer {
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 2rem 0;
    position: relative;
    z-index: 10;
    transition: all 0.2s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 380px;
    transition: color 0.2s ease;
}

.footer-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
    transition: all 0.2s ease;
}

.control-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    min-width: 110px;
}

.control-btn.lang-change {
    min-width: 132px;
    padding: 10px 10px 10px 18px;
}

.control-btn:hover {
    border-color: var(--color-border-hover);
}

.control-btn svg {
    width: 16px;
    height: 16px;
}

.lang-icon {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    width: 22px !important;
    height: 16px !important;
    transition: all 0.2s ease;
}

.lang-dropdown-wrapper {
    position: relative;
}

.flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 1px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

.chevron-icon {
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.lang-dropdown-wrapper.active .chevron-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    min-width: 132px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    overflow: hidden;
    z-index: 100;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 16px;
    padding-left: 16px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    width: 100%;
}

.lang-option:first-child {
    padding-top: 12px;
}

.lang-option:last-child {
    padding-bottom: 12px;
}

.lang-option-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-option-left svg {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    width: 24px !important;
    height: 18px !important;
}

.lang-option:hover {
    color: var(--text-muted);
}

.lang-option .check-icon {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-option.active .check-icon {
    color: var(--text-muted);
    opacity: 1;
    transform: scale(1);
}

.footer-links-side {
    display: flex;
    gap: 64px;
    justify-content: flex-end;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    width: max-content;
    flex-shrink: 0;
}

.footer-col h3 {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: var(--text-muted);
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--text-main);
}

.company-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.company-info-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: auto;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--footer-text);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.875rem;
    color: var(--footer-text);
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--text-main);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #ffffff;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.6);
    border-radius: 6px;
    border: 3px solid transparent;
    background-clip: content-box;
    transition: background-color 0.2s ease;
    cursor: default;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(100, 100, 100, 0.8);
}

::selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-moz-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

.error-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.error-svg {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.error-svg svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    z-index: 10;
}

.error-title {
    line-height: 1;
    margin-bottom: 1rem;
}

.error-subtitle {
    font-size: 2rem;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.error-desc {
    font-size: 1.4rem;
    max-width: 500px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.contact-wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-side {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.form-input,
.form-textarea {
    background-color: var(--glass-bg);
    border: 1px solid var(--color-border);
    color: var(--text-main);
    padding: 14px 18px;
    border-radius: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-border-hover);
}

.form-textarea {
    resize: none;
    min-height: 160px;
}

.form-submit-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.btn-submit {
    margin-top: 0.5rem;
    margin-bottom: 4rem;
    overflow: hidden;
    align-self: flex-end;
    gap: 0.5rem;
}

.btn-submit span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-icon {
    position: relative;
    width: 22px;
    height: 22px;
    overflow: hidden;
}

.btn-submit-icon.sending svg {
    position: absolute;
    top: 0;
    left: 0;
    animation: flyIcon 1s linear infinite;
}

@keyframes flyIcon {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(35px);
    }
}

.slide-up {
    animation: slideUp 0.35s ease forwards;
}

.slide-down {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 8px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.info-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-email {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.info-email:hover {
    color: var(--btn-bg-hover);
}

.contact-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    color: var(--text-main);
    transition: all 0.2s ease;
    background: transparent;
}

.contact-social-link:hover {
    border-color: var(--color-border-hover);
}

.contact-social-link svg {
    width: 24px;
    height: 24px;
}

.hero-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.advantage-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.advantage-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    color: var(--text-main);
    background: var(--feature-icon-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
}

.advantage-title {
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--text-main);
}

.advantage-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.loc-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.loc-name {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.loc-name svg {
    border-radius: 0.5rem;
}

.loc-title {
    font-size: 2rem;
    line-height: 1;
}

.loc-subtitle {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.loc-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.loc-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.loc-feature-item svg {
    width: 22px;
    height: 22px;
    color: var(--text-main);
}

.schema-container {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
}

.schema-desktop {
    display: block;
    width: 980px;
    height: 380px;
    min-width: 980px;
}

.schema-mobile {
    display: none;
}

.schema-node {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--schema-icon-bg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.schema-node svg {
    width: 28px;
    height: 28px;
}

.schema-label {
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.schema-label-2 {
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.filter-label {
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.node-attacker {
    left: 72px;
    top: 22px;
}

.node-user {
    border-color: var(--color-border);
    left: 72px;
    top: 162px;
}

.node-bot {
    left: 72px;
    top: 302px;
}

.node-server {
    left: 862px;
    top: 162px;
}

.schema-shield-box {
    position: absolute;
    left: 260px;
    top: 90px;
    width: 460px;
    height: 200px;
    border-radius: 20px;
    background: var(--feature-icon-bg);
    border: 2px dashed var(--color-border);
    z-index: 2;
}

.schema-shield-title {
    position: absolute;
    left: 260px;
    top: 115px;
    width: 460px;
    text-align: center;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 5;
    transition: color 0.2s ease;
}

.node-filter-1 {
    left: 322px;
    top: 162px;
}

.node-filter-2 {
    border-color: var(--text-main);
    left: 462px;
    top: 162px;
}

.node-filter-3 {
    left: 602px;
    top: 162px;
}

.schema-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.line-path {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.path-user {
    stroke: #57B9FF;
}

.path-threat {
    stroke: #FF605C;
}

.dashed-connector-svg {
    stroke: var(--color-border);
    stroke-width: 2;
    stroke-dasharray: 6 6;
    opacity: 0;
    transition: opacity 0.4s ease 1.9s;
}

.path-user-in {
    stroke-dasharray: 135;
    stroke-dashoffset: 135;
}

.path-threat-in-1 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.path-threat-in-2 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.path-user-out {
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
}

.path-threat-out-1 {
    stroke-dasharray: 75;
    stroke-dashoffset: 75;
}

.path-threat-out-2 {
    stroke-dasharray: 75;
    stroke-dashoffset: 75;
}

.reveal.active .path-user-in {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.3s linear;
}

.reveal.active .path-threat-in-1 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.9s linear;
}

.reveal.active .path-threat-in-2 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.9s linear;
}

.reveal.active .dashed-connector-svg {
    opacity: 1;
}

.reveal.active .path-user-out {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.4s linear 2.2s;
}

.reveal.active .path-threat-out-1 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.7s linear 2.2s;
}

.reveal.active .path-threat-out-2 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.7s linear 2.2s;
}

.blocked-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FF605C;
    border-radius: 50%;
    z-index: 12;
    opacity: 0;
}

.reveal.active .blocked-dot {
    opacity: 1;
    transition: opacity 0.2s linear 2.9s;
}

.dot-attacker {
    left: 785px;
    top: 149px;
}

.dot-bot {
    left: 785px;
    top: 221px;
}

.schema-mobile .schema-label {
    width: 90px;
    font-size: 11px;
    top: -25px;
}

.schema-mobile .schema-label-2 {
    width: 90px;
    font-size: 11px;
    top: 66px;
}

.schema-mobile .node-attacker {
    left: 52px;
    top: 50px;
}

.schema-mobile .node-user {
    left: 142px;
    top: 50px;
}

.schema-mobile .node-bot {
    left: 232px;
    top: 50px;
}

.schema-mobile .schema-shield-box {
    left: 60px;
    top: 220px;
    width: 220px;
    height: 500px;
}

.schema-mobile .schema-shield-title {
    left: 60px;
    top: 240px;
    width: 220px;
}

.schema-mobile .node-filter-1 {
    left: 142px;
    top: 282px;
}

.schema-mobile .node-filter-2 {
    border-color: var(--color-accent);
    left: 142px;
    top: 442px;
}

.schema-mobile .node-filter-3 {
    left: 142px;
    top: 602px;
}

.schema-mobile .node-server {
    left: 142px;
    top: 834px;
}

.schema-mobile .m-path-user-in {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
}

.schema-mobile .m-path-threat-in-1 {
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
}

.schema-mobile .m-path-threat-in-2 {
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
}

.schema-mobile .m-path-user-out {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
}

.schema-mobile .m-path-threat-out-1 {
    stroke-dasharray: 75;
    stroke-dashoffset: 75;
}

.schema-mobile .m-path-threat-out-2 {
    stroke-dasharray: 75;
    stroke-dashoffset: 75;
}

.reveal.active .schema-mobile .m-path-user-in {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.3s linear;
}

.reveal.active .schema-mobile .m-path-threat-in-1 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.9s linear;
}

.reveal.active .schema-mobile .m-path-threat-in-2 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.9s linear;
}

.reveal.active .schema-mobile .dashed-connector-svg {
    opacity: 1;
}

.reveal.active .schema-mobile .m-path-user-out {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.4s linear 2.2s;
}

.reveal.active .schema-mobile .m-path-threat-out-1 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.7s linear 2.2s;
}

.reveal.active .schema-mobile .m-path-threat-out-2 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.7s linear 2.2s;
}

.reveal.active .schema-mobile .blocked-dot {
    opacity: 1;
    transition: opacity 0.2s linear 2.9s;
}

.schema-mobile .dot-attacker {
    left: 129px;
    top: 775px;
}

.schema-mobile .dot-bot {
    left: 201px;
    top: 775px;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.protocol-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    height: 100%;
}

.protocol-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.protocol-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background-color: var(--feature-icon-bg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.protocol-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--text-main);
}

.protocol-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .section-header h2 {
        line-height: 1.25;
    }

    .pricing-card h3 {
        line-height: 1.25;
    }

    .ddos-title {
        line-height: 1.25;
    }

    .reasons-left h2 {
        line-height: 1.25;
    }

    .navbar.open {
        max-height: 500px;
    }

    .navbar .container {
        padding: 20px 24px;
    }

    .navbar .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: calc(100vh - 70px);
    }

    .hero-subpage {
        padding-top: 60px;
    }

    .hero-info {
        padding-bottom: 30px;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features-list {
        justify-content: center;
    }

    .hero-graphic-container {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stats-divider {
        display: none;
    }

    .features-grid,
    .opinie-grid,
    .reasons-grid,
    .protocols-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .glass-card:hover {
        border-color: var(--color-border);
        transform: none;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card {
        padding: 2rem;
    }

    .btn-ddos-phone-hide {
        display: none;
    }

    .btn-ddos-phone-show {
        display: flex;
    }

    .btn-ddos-icon {
        display: none;
    }

    .hero-grid,
    .discord-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .discord-content {
        text-align: center;
    }

    .discord-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .reasons-grid {
        gap: 4rem;
    }

    .reasons-left {
        text-align: center;
    }

    .reasons-right-grid {
        grid-template-columns: 1fr;
    }

    .reason-card:hover {
        border-color: var(--color-border);
        transform: none;
    }

    .reason-card-large {
        grid-column: span 1;
    }

    .cta-card {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        font-size: 1rem;
    }

    .control-btn:hover {
        border-color: var(--color-border);
    }

    .footer-links-side {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 32px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 1.2rem;
    }

    .footer-col a {
        font-size: 1rem;
    }

    .footer-col p {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .error-svg {
        max-width: 300px;
    }

    .error-svg svg {
        max-width: 300px;
    }

    .error-subtitle {
        font-size: 1.5rem;
    }

    .error-desc {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        margin-top: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .btn-submit {
        width: 100%;
        margin-bottom: 0rem;
    }

    .contact-info-side {
        gap: 2rem;
        padding-top: 0px;
    }

    .info-block {
        text-align: center;
    }

    .contact-social-grid {
        align-items: center;
        justify-content: center;
        margin-bottom: 56px;
    }

    .loc-card {
        padding: 0rem;
    }

    .advantage-card:hover {
        border-color: var(--color-border);
        transform: none;
    }

    .schema-container {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .schema-desktop {
        display: none;
    }

    .schema-mobile {
        display: block;
        width: 340px;
        height: 960px;
        min-width: 340px;
    }

    .protocol-card:hover {
        border-color: var(--color-border);
        transform: none;
    }
}