:root {
    --bg-color: #0a0a0a;
    --card-bg: #161616;
    --primary: #7000ff;
    --primary-glow: rgba(112, 0, 255, 0.5);
    --accent: #00ff9d;
    --text-main: #ffffff;
    --text-muted: #888888;
    --gradient-main: linear-gradient(135deg, #7000ff 0%, #ff0055 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

/* Background Effects */
/* Background Effects */
.background-glow {
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150vw;
    height: 150vw;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: -1;
    pointer-events: none;
}

.background-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 157, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
header {
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    z-index: 1001;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.badge {
    background: var(--gradient-main);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(112, 0, 255, 0.3);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links > a:not(.btn-primary):not(.btn-secondary):hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-secondary {
    text-decoration: none;
    color: white;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-primary {
    text-decoration: none;
    color: white;
    background: var(--gradient-main);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(112, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.4);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(16, 16, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 8px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > a {
        width: 100%;
        padding: 14px 18px;
        border-radius: 10px;
        text-align: left;
        font-size: 1rem;
        border: 1px solid transparent;
    }

    .nav-links > a:not(.btn-primary):not(.btn-secondary) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
        padding-left: 0;
    }

    .nav-links > a.btn-secondary,
    .nav-links > a.btn-primary {
        margin-top: 8px;
        justify-content: center;
        width: 100%;
    }

    .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    .logo-img {
        height: 36px;
    }

    .badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
}

/* Hero Section Redesign */
.hero {
    padding: 140px 0 40px;
    position: relative;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Card (Left) */
.hero-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.card-top-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.flag {
    font-size: 2rem;
}

.sovereign-badge {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
}

.sovereign-badge small {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.cpu-spec {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.text-primary {
    color: var(--primary);
}

.btn-hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--primary) 0%, #5a00cc 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-card:hover {
    background: #5a00cc;
    transform: translateY(-2px);
}

/* Hero Content (Right) */
.rating-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

.text-warning {
    color: #ffc107;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.text-accent {
    color: var(--accent);
}

.hero-promo-text {
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.hero-promo-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(112, 0, 255, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Firewall Visual */
.firewall-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.fw-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 15px rgba(112, 0, 255, 0.3));
}

.fw-shield {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #7000ff 0%, #00ff9d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.fw-wall {
    font-size: 3.5rem;
    color: #ff5555;
    position: absolute;
    bottom: -5px;
    right: -5px;
    opacity: 0.6;
    z-index: 1;
    filter: blur(1px);
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-card {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-card {
        order: 1;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    #terminal-widget-container {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-features li,
    .hero-benefits {
        justify-content: center;
    }

    .rating-badge {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 30px;
    }
}

/* Pricing Section */
.pricing {
    padding: 60px 0 100px;
}

/* Promotional Banner */
.promo-banner {
    margin-bottom: 60px;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.15) 0%, rgba(0, 255, 157, 0.1) 100%);
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.2);
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(112, 0, 255, 0.2);
        border-color: rgba(112, 0, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(112, 0, 255, 0.4);
        border-color: rgba(112, 0, 255, 0.5);
    }
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: white;
}

.promo-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.promo-item.highlight-promo {
    color: var(--accent);
}

.promo-item.highlight-promo i {
    color: var(--primary);
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.promo-item strong {
    color: white;
    font-weight: 700;
}

.promo-item.highlight-promo strong {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 20px;
    }

    .promo-content {
        gap: 20px;
    }

    .promo-divider {
        display: none;
    }

    .promo-item {
        font-size: 1rem;
    }
}

/* Countdown Timer */
.countdown-container {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-label {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    min-width: 60px;
    text-align: center;
    text-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 5px;
    animation: blink-separator 1s ease-in-out infinite;
}

@keyframes blink-separator {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .countdown-value {
        font-size: 2rem;
        min-width: 50px;
    }

    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 3px;
    }

    .countdown-timer {
        gap: 10px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.toggle-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.pricing-card {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card::after,
.feature-card::after,
.tech-card::after,
.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.pricing-card:hover::after,
.feature-card:hover::after,
.tech-card:hover::after,
.hero-card:hover::after {
    opacity: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(22, 22, 22, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(112, 0, 255, 0.3);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(112, 0, 255, 0.15);
    transform: scale(1.05);
    z-index: 10;
    position: relative;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 60px rgba(112, 0, 255, 0.25);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.2;
}

.price-sub {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.1;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.bonus-badge {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    transition: padding-left 0.2s ease;
}

.features li:hover {
    padding-left: 5px;
    color: white;
}

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

.btn-card {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-card:hover .btn-card,
.pricing-card.popular .btn-card {
    background: white;
    color: black;
}

/* Ceph Banner */
.ceph-banner {
    padding: 80px 0;
    background: linear-gradient(90deg, #0f0f0f 0%, #161616 50%, #0f0f0f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 80px;
    position: relative;
}

.ceph-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.ceph-text h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

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

.ceph-text strong {
    color: white;
}

.ceph-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceph-img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make white for dark theme if needed, or keep original if it looks good. Let's try keeping original first but maybe adjust opacity if it's too bright. Actually, user sent a standard RGB logo, likely colored. Let's check if it needs background adjustment. The banner is dark. If the logo has white text it's fine. If it's black text, we might need a white container or filter. The filename says 'Standard_RGB', usually red/white or red/black. Let's assume it needs to be visible on dark. I will add a filter to invert it to white text if needed, or just trust the user. Let's set a safe max-width. */
}

/* Features Grid Section */
.features-grid-section {
    padding: 50px 0 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(22, 22, 22, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(112, 0, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(22, 22, 22, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover::after {
    opacity: 1;
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(112, 0, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(112, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .f-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Advanced Tech Section */
.advanced-tech {
    padding: 50px 0 100px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(22, 22, 22, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(112, 0, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(112, 0, 255, 0.2);
    box-shadow: inset 0 0 15px rgba(112, 0, 255, 0.1);
}

.tag-new {
    background: rgba(112, 0, 255, 0.2);
    color: #b380ff;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(112, 0, 255, 0.3);
}

.tech-label {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.tech-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-img-placeholder {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 20px 0;
    color: var(--text-muted);
    font-weight: 600;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.tech-list {
    list-style: none;
}

.tech-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .ceph-content {
        justify-content: center;
        text-align: center;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer,
.site-footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #050505 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    position: relative;
}

footer::before,
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img-footer {
    height: 50px;
    width: auto;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-row i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-row a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-row a:hover {
    color: var(--primary);
}

.contact-row.highlight a {
    color: white;
    font-weight: 600;
}

.contact-row.highlight a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom-links .separator {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}