:root {
    --rokbyte-primary: #00f3ff;
    --rokbyte-secondary: #7b61ff;
    --rokbyte-accent: #00ff9d;
    --rokbyte-dark: #0a0a0f;
    --rokbyte-gray: #1a1a24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--rokbyte-dark);
    color: #f0f0f0;
    overflow-x: hidden;
}

.rokbyte-gradient {
    background: linear-gradient(90deg, var(--rokbyte-primary) 0%, var(--rokbyte-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rokbyte-bg-gradient {
    background: linear-gradient(135deg, var(--rokbyte-primary) 0%, var(--rokbyte-secondary) 100%);
}

.accent-gradient {
    background: linear-gradient(90deg, var(--rokbyte-accent) 0%, var(--rokbyte-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(26, 26, 36, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rokbyte-primary) 0%, var(--rokbyte-secondary) 100%);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glow {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.accent-glow {
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid var(--rokbyte-primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--rokbyte-primary);
    }
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--rokbyte-primary);
    opacity: 0.3;
}

.tech-icon {
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.tech-icon:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.menu-open {
    transform: translateX(0);
}

.menu-closed {
    transform: translateX(100%);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.1);
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.15);
}

.counter-number {
    font-weight: 800;
    background: linear-gradient(90deg, var(--rokbyte-primary) 0%, var(--rokbyte-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}


.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #ccc;
    line-height: 1.6;
}

.faq-answer.open {
    max-height: 300px;
    margin-top: 15px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.footer-column {
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--rokbyte-primary);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    width: 100%;
    margin-bottom: 10px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--rokbyte-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.payment-methods i {
    font-size: 24px;
    margin-right: 10px;
    color: #888;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--rokbyte-dark);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rokbyte-primary);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th {
    background: rgba(0, 243, 255, 0.1);
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.comparison-table .check {
    color: var(--rokbyte-accent);
}

.comparison-table .cross {
    color: #ff6b6b;
}

.product-comparison {
    background: rgba(26, 26, 36, 0.5);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
}

.product-feature i {
    margin-right: 8px;
    color: var(--rokbyte-accent);
    font-size: 12px;
}

.product-banner {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.product-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.team-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    border-color: rgba(0, 243, 255, 0.3);
}

.team-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.9));
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--rokbyte-primary);
    color: black;
    transform: scale(1.1);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--rokbyte-primary), var(--rokbyte-secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rokbyte-primary);
    border: 4px solid var(--rokbyte-dark);
}

.value-card {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.stats-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-card .number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.culture-card {
    padding: 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.culture-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.office-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.office-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(123, 97, 255, 0.1));
}

.client-logo {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.2), rgba(123, 97, 255, 0.2));
}

.mission-statement {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
}

.leadership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    background: var(--rokbyte-primary);
    color: black;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-card {
    padding: 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.award-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.award-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.testimonial-quote {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(0, 243, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

.journey-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.journey-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.7));
}

.product-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
}

.product-feature i {
    margin-right: 8px;
    color: var(--rokbyte-accent);
    font-size: 12px;
}

.category-tab {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab.active {
    background: var(--rokbyte-primary);
    color: black;
    border-color: var(--rokbyte-primary);
    font-weight: 600;
}

.category-tab:hover:not(.active) {
    border-color: var(--rokbyte-primary);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card.popular {
    border: 2px solid var(--rokbyte-primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rokbyte-primary);
    color: black;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    width: 20px;
}

.feature-list li.included i {
    color: var(--rokbyte-accent);
}

.feature-list li.not-included {
    color: #666;
}

.feature-list li.not-included i {
    color: #666;
}

.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-stack-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.tech-stack-item i {
    font-size: 32px;
    margin-bottom: 15px;
}

.demo-video {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.demo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(123, 97, 255, 0.1));
    z-index: 1;
}

.stats-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-card .number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.use-case-card {
    padding: 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}