.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--road-gray);
    display: flex;
    align-items: center;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-header);
    text-transform: uppercase;
}

.logo-accent {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.close-menu {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .close-menu {
        display: block;
    }

    .nav-item {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}









.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.95) 20%, rgba(18, 18, 18, 0.2)),
        url('./assets/hero.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    clip-path: inset(0 100% 0 0);
    animation: revealBackground 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: revealBadge 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.8s;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: translateY(50px);
    animation: revealText 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards 1s;
}

.hero-subtitle {
    max-width: 550px;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.4s;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.6s;
}


@keyframes revealBackground {
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes revealBadge {
    to {
        opacity: 1;
        letter-spacing: 3px;
    }
}

@keyframes revealText {
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-bg {
        background: linear-gradient(to top, rgba(18, 18, 18, 1) 10%, rgba(18, 18, 18, 0.4)),
            url('./assets/hero.webp');
        background-position: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}









.features {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.main-title {
    font-size: var(--fs-h2);
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-surface);
    padding: 50px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.card-icon {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    transition: var(--transition);
}

.card-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.card-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover .card-icon {
    color: var(--primary-hover);
    opacity: 0.2;
}

.feature-card.active {
    border-color: rgba(245, 185, 0, 0.3);
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 40px 30px;
        text-align: center;
    }

    .feature-card::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }

    .card-icon {
        right: 50%;
        transform: translateX(50%);
        top: 10px;
    }
}








.showcase {
    padding: 100px 0;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-visual {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-industrial);
}

.showcase-image-wrapper {
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 10s ease-in-out;
    filter: grayscale(20%);
}

.showcase-visual:hover .showcase-img {
    transform: scale(1.1) translateX(10px);
}

.visual-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 8px 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.showcase-content {
    flex: 1;
}

.showcase-description {
    color: var(--text-muted);
    margin: 20px 0 40px;
    line-height: 1.8;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-top: 1px solid var(--road-gray);
    padding-top: 30px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.showcase-footer {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .showcase {
        padding: 60px 0;
    }

    .showcase-container {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-visual {
        width: 100%;
        height: 300px;
    }

    .showcase-img {
        height: 100%;
    }

    .showcase-content {
        text-align: center;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .showcase-footer {
        flex-direction: column;
    }
}









.gallery-showcase {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-description {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    box-shadow: var(--shadow-industrial);
    cursor: pointer;
}

.feature-item {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
    z-index: 2;
}

.img-category {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-showcase {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .feature-item {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
}









.tech-specs {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.tech-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 120px;
    position: relative;
}

.tech-row.reverse {
    flex-direction: row-reverse;
}

.tech-image {
    flex: 0 0 60%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: var(--transition);
}

.tech-card {
    flex: 0 0 45%;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: -10%;
    z-index: 5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.tech-row.reverse .tech-card {
    margin-left: 0;
    margin-right: -10%;
}

.spec-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.spec-list {
    margin-top: 25px;
    padding: 0;
}

.spec-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.accent-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    display: inline-block;
    border-radius: 50%;
}

@media (max-width: 768px) {

    .tech-row,
    .tech-row.reverse {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .tech-image {
        flex: 0 0 100%;
        width: 100%;
        height: 300px;
    }

    .tech-card {
        flex: 0 0 100%;
        width: 90%;
        margin: -40px auto 0;
        padding: 30px;
        text-align: center;
    }

    .spec-list li {
        justify-content: center;
    }
}







.inventory {
    padding: 100px 0;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.inventory-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.inventory-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--bg-dark);
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 2px;
}

.card-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.card-info p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-text {
    display: inline-block;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.inventory-card:hover {
    transform: translateY(-10px) skewX(-1deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.inventory-card:hover .card-img-box img {
    transform: scale(1.15);
}

.inventory-card:hover .btn-text {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .inventory-track {
        flex-direction: column;
        gap: 20px;
    }

    .inventory-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .card-img-box {
        height: 200px;
    }
}







.stats-parallax {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('./assets/bg\ img.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0.85),
            rgba(18, 18, 18, 0.95));
    padding: 100px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stat-box-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-box-glass:hover {
    background: rgba(245, 185, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .stats-parallax {
        background-attachment: scroll;
    }

    .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-description {
        margin: 0 auto;
    }
}



.performance-stats {
    padding: 100px 0;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.skill-bars {
    margin-top: 40px;
}

.bar-item {
    margin-bottom: 25px;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bar-line {
    width: 100%;
    height: 6px;
    background: var(--road-gray);
    border-radius: 10px;
    overflow: hidden;
}

.bar-line .fill {
    display: block;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 10px;
    animation: loadBar 2s cubic-bezier(0.1, 1, 0.3, 1) forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes loadBar {
    to {
        transform: scaleX(1);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    background: var(--bg-dark);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.plus {
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .section-description {
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}








.pricing-tiers {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--bg-surface);
    padding: 50px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    text-align: center;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.price-card:nth-child(2) {
    animation-delay: 0.3s;
}

.price-card:nth-child(3) {
    animation-delay: 0.5s;
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(145deg, var(--bg-surface), #252525);
    z-index: 10;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
}

.price-header {
    margin-bottom: 30px;
}

.tier-name {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.price-value {
    font-size: 3rem;
    color: var(--text-header);
    margin-top: 10px;
}

.price-value span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features {
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.price-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-15px) scale(1.05);
    }
}

.price-card {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardIgnition 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.price-card:nth-child(2) {
    animation-delay: 0.3s;
}

.price-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes cardIgnition {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.price-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.price-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 185, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.price-card:hover {
    transform: translateY(-20px) scale(1.03) !important;
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(245, 185, 0, 0.2);
}

.price-card:hover::after {
    opacity: 1;
}

.price-value {
    transition: transform 0.3s ease;
}

.price-card:hover .price-value {
    color: var(--primary-color);
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(245, 185, 0, 0.3);
}

.price-card.featured .btn-primary {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 185, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 185, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 185, 0, 0);
    }
}

.price-features li {
    transform: translateX(-10px);
    opacity: 0.7;
    transition: 0.4s ease;
}

.price-card:hover .price-features li {
    transform: translateX(0);
    opacity: 1;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .price-card:hover {
        transform: translateY(-15px) scale(1.02) !important;
    }

    .price-card.featured {
        margin: 20px 0;
    }
}







.testimonials {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s ease forwards;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.4s;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    color: var(--text-header);
    font-size: 0.9rem;
}

.reviewer-role {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(245, 185, 0, 0.1);
    transform: translateY(-5px);
}

.review-card.highlight {
    background: linear-gradient(145deg, var(--bg-surface), #252525);
    border-color: rgba(245, 185, 0, 0.3);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.review-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: carReveal 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.review-card:nth-child(1) {
    animation-delay: 0.2s;
}

.review-card:nth-child(2) {
    animation-delay: 0.4s;
}

.review-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes carReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-card {
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    transition: 0.6s;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background-color: #252525;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(245, 185, 0, 0.1);
}

.reviewer-img {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.review-card:hover .reviewer-img {
    transform: scale(1.2) rotate(5deg);
    border-color: var(--primary-color);
}

.review-text {
    transition: color 0.3s ease;
}

.review-card:hover .review-text {
    color: var(--text-header);
}

.review-card:hover .quote-icon {
    animation: glitchGlow 0.3s infinite alternate;
    opacity: 0.4;
}

@keyframes glitchGlow {
    0% {
        text-shadow: -2px 0 var(--accent-red);
    }

    100% {
        text-shadow: 2px 0 var(--accent-blue);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 30px;
        text-align: center;
    }

    .reviewer-info {
        flex-direction: column;
    }
}









.faq-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--road-gray);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.6s ease forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-header);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    transition: var(--transition);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(245, 185, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--text-main);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}








.final-cta {
    position: relative;
    padding: 120px 0;
    background-color: #0a0a0a;
    overflow: hidden;
    text-align: center;
}

.cta-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 185, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 185, 0, 0.1) 0%, transparent 40%);
    filter: blur(60px);
    animation: meshMove 10s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes meshMove {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(5%, 5%);
    }
}

.cta-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(245, 185, 0, 0.1) 50%,
            transparent 100%);
    height: 10px;
    width: 100%;
    opacity: 0.5;
    z-index: 2;
    animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

.cta-container {
    position: relative;
    z-index: 3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--chrome-silver);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(245, 185, 0, 0.05);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    .main-title {
        font-size: 2.2rem;
    }
}








.main-footer {
    position: relative;
    padding: 80px 0 30px;
    background-color: #080808;
    color: var(--text-main);
    overflow: hidden;
    border-top: 1px solid var(--road-gray);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(245, 185, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 185, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--text-header);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--road-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-on-primary);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.footer-form {
    display: flex;
    margin-top: 20px;
}

.footer-input {
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--road-gray);
    padding: 12px 15px;
    color: var(--text-main);
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-btn {
    background: var(--primary-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 900;
    transition: var(--transition);
}

.footer-btn:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--road-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal a {
    margin-left: 20px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-col:first-child {
        order: 2;
    }

    .footer-col:last-child {
        order: 1;
    }
}