:root {
    --bg-dark: #07090d;
    --card-bg: rgba(12, 18, 30, 0.6);
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --primary-color: #3b82f6;
    --secondary-color: #2563eb;
    --accent-color: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border-color: rgba(59, 130, 246, 0.2);
    --glass-border: rgba(59, 130, 246, 0.15);
    --nav-bg: rgba(7, 9, 13, 0.8);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

a {
    text-decoration: none;
}

html {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

html::-webkit-scrollbar-button {
    display: none !important;
    height: 0 !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow: visible;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #05070a;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: rgba(59, 130, 246, 0.5);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: rgba(14, 165, 233, 0.4);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 900px;
    height: 900px;
    background: rgba(37, 99, 235, 0.3);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(7, 9, 13, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

nav.scrolled {
    background: rgba(7, 9, 13, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.1);
    top: 10px;
    width: 95%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 36px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.nav-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.nav-actions .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.nav-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-actions .btn-primary:hover {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 8px 20px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 13, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 0 0 24px 24px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-top: none;
        gap: 1.5rem;
    }

    nav.active .nav-actions .btn {
        display: none;
    }
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 12px 25px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover i {
    color: #5865F2;
    transform: scale(1.15) rotate(-5deg);
}

.hero {
    padding: 135px 0 45px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 5;
    margin-left: -300px;
}

.character-bg {
    position: absolute;
    bottom: -30px;
    right: -4%;
    height: 76vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    display: flex;
    align-items: flex-end;
}

.character-bg img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.2));
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 1400px) {
    .hero-content {
        margin-left: 0;
    }

    .character-bg {
        right: -5%;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .character-bg {
        opacity: 0.3;
        right: -10%;
    }
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 140px;
        min-height: auto;
    }

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

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

    .hero h1 {
        text-align: center;
        font-size: 3.5rem;
    }

    .hero p {
        text-align: center;
        margin: 0 auto 2.5rem;
    }

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

    .character-bg {
        display: none;
    }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.trust-badge .stars {
    color: #f59e0b;
    display: flex;
    gap: 2px;
}

.hero h1 {
    font-size: 5.15rem;
    line-height: 1.1;
    margin-bottom: 1.7rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 750;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 780px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}



.tech-bar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.tech-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s;
}

.tech-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: all 0.3s;
}

.tech-item:hover .tech-logo {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.1);
}

.tech-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.tech-item:hover {
    color: #fff;
    transform: translateY(-2px);
}


.features {
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header p {
    color: var(--text-muted);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(145deg, rgba(12, 18, 30, 0.8) 0%, rgba(7, 9, 13, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(18, 28, 48, 0.9) 0%, rgba(7, 9, 13, 0.95) 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(59, 130, 246, 0.15);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-img {
    position: absolute;
    top: 0;
    right: -20px;
    width: 70%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
    filter: grayscale(1);
}

.bento-card:hover .bento-img {
    opacity: 0.25;
    right: 0;
    filter: grayscale(0.2);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.bento-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), inset 0 2px 10px rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.feature-icon i {
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8));
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #fff;
    z-index: 2;
}

.bento-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.hardware-card {
    grid-column: span 2;
}

.security-card {
    grid-column: span 1;
}

.network-card {
    grid-column: span 1;
}

.panel-card {
    grid-column: span 2;
}

.tech-specs {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

.tech-specs i {
    color: var(--success);
}

.ddos-card-reversed {
    grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 992px) {
    .ddos-card-reversed {
        grid-template-columns: 1fr;
    }
}

.pricing {
    padding: 60px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.price-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.price-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.price-badge {
    position: absolute;
    top: 25px;
    right: -45px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    backdrop-filter: blur(8px);
    color: #fff;
    width: 200px;
    padding: 8px 0;
    padding-left: 15px;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features li i {
    color: var(--success);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links li {
    list-style: none;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about {
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.about-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.about-header .section-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.about-header h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.8px;
}

.about-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.unified-about-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: rgba(12, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.about-text-panel {
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-panel h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.about-text-panel p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.about-showcase-wrapper {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.about-showcase-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    mask-image: linear-gradient(to right, transparent, black 25%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%);
}

.showcase-overlay {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    text-align: right;
}

.showcase-overlay h3 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .hardware-card, .panel-card {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 130px 0 40px;
        text-align: center;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .hardware-card,
    .security-card,
    .network-card,
    .panel-card {
        grid-column: span 1;
    }

    .bento-card {
        padding: 2rem;
    }

    .unified-about-card {
        grid-template-columns: 1fr;
    }

    .about-showcase-wrapper img {
        mask-image: linear-gradient(to bottom, transparent, black 25%);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%);
        height: 300px;
    }

    .about-text-panel {
        padding: 2rem;
    }

    .showcase-overlay {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .showcase-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0.75rem 1.25rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-top: none;
        gap: 1.5rem;
        align-items: center;
    }

    nav.active .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 1.5rem;
    }
    
    nav.active .nav-actions .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .tech-icons {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .tech-logo {
        width: 35px;
        height: 35px;
    }
    
    .tech-item i {
        font-size: 1.2rem;
    }

    .price-card {
        padding: 2.5rem 2rem;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .price-badge {
        right: -55px;
        top: 30px;
    }

    .footer-content {
        gap: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-text-panel h3 {
        font-size: 1.6rem;
    }

    .bento-card {
        padding: 1.5rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .price-card .price {
        font-size: 2.5rem;
    }
}

.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: rgba(12, 18, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.active {
    transform: translateX(0);
}

.toast i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.toast-content h4 {
    margin: 0;
    font-size: 1rem;
}

.toast-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-page {
    padding: 150px 0 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.legal-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.legal-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    background: rgba(12, 18, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.legal-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-nav a {
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-nav a:hover, .legal-nav a.active {
    background: rgba(59, 130, 246, 0.1);
    color: #fff;
    border-left: 3px solid var(--primary-color);
}

.legal-content {
    flex: 1;
    background: rgba(12, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-section {
    margin-bottom: 4rem;
    scroll-margin-top: 150px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .legal-layout {
        flex-direction: column;
    }
    
    .legal-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
}



.community-block {
    padding: 80px 0 40px;
}

.community-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.discord-icon-large {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.4));
}

.community-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.faq {
    padding: 40px 0 100px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}