/* 
   Hanexa Premium Website - Global Styles 
   Theme: Dark with Neon Accents
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-pink: #ff0055;

    --font-main: 'Outfit', sans-serif;

    --glow-cyan: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
    --glow-purple: 0 0 10px rgba(188, 19, 254, 0.5), 0 0 20px rgba(188, 19, 254, 0.3);
    --glow-pink: 0 0 10px rgba(255, 0, 85, 0.5), 0 0 20px rgba(255, 0, 85, 0.3);

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--bg-dark), var(--neon-purple), var(--neon-cyan));
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--bg-dark), var(--neon-cyan), var(--neon-purple));
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Typography & Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-cyan {
    color: var(--neon-cyan);
}

.text-purple {
    color: var(--neon-purple);
}

.text-pink {
    color: var(--neon-pink);
}

.neon-text-cyan {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
}

.neon-text-purple {
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.7);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-primary:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.btn-secondary:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.6);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon-cyan);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(-45deg, #050505, #1a001a, #001a1a, #050505);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Animated background orbs for extra fancy look */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 10s infinite alternate;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 12s infinite alternate-reverse;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.typewriter {
    border-right: 4px solid var(--neon-pink);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- Cards & Grid --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* New Mobile Grid Class */
.mobile-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.1), inset 0 0 20px rgba(0, 243, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
    background: #020202;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
}

/* --- Animations --- */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Page Specifics --- */
/* Pricing */
.price-card {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin: 20px 0;
}

/* Team */
.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--neon-purple);
    object-fit: cover;
    background: #222;
}

/* Blog */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* --- Mobile Responsive Improvements --- */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    /* Better mobile grid */
    .grid-3 {
        grid-template-columns: 1fr;
        /* Default stack */
        gap: 20px;
    }

    /* Special 2-column mobile grid for smaller items if needed */
    .mobile-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    /* Ensure cards take full width but add breathing room */
    .mobile-grid-2 {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* --- New Team Page Styles --- */
.team-leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    justify-content: center;
}

.team-leader-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.team-leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.team-leader-card .img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
}

.team-leader-card .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    margin: 0;
}

.team-leader-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.team-leader-card .role {
    color: var(--neon-cyan);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Detail Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
    z-index: 10;
}

.team-leader-card:active .team-overlay,
.team-leader-card.active .team-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-overlay p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-muted);
}

.team-overlay .highlight {
    color: var(--neon-cyan);
    font-weight: 600;
}

.tap-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    animation: pulse 2s infinite;
}

/* Employee Section */
.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.employee-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.employee-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-purple);
    transform: translateY(-5px);
}

.employee-card h4 {
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.employee-card .role {
    color: var(--neon-purple);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.employee-card .location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .team-leader-card {
        margin-bottom: 20px;
    }
}

/* --- Team Single Page --- */
.team-single-container {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.team-single-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.team-single-img-col {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.team-single-info-col {
    flex: 2;
    min-width: 300px;
}

.img-wrapper-large {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.team-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--bg-card);
}

.role-text-large {
    color: var(--neon-purple);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.details-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.details-box p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.details-box i {
    width: 25px;
    color: var(--neon-cyan);
}

.bio-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .team-single-row {
        flex-direction: column;
        gap: 30px;
    }

    .img-wrapper-large {
        width: 200px;
        height: 200px;
    }

    .role-text-large {
        font-size: 1.2rem;
    }
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--text-main);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-wrapper label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Keyframes --- */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Enhanced Footer --- */
.footer {
    background: linear-gradient(to top, #020202, #0a0a0a);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
}

/* --- Testimonials --- */
.testimonial-card .client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card h4 {
    margin-bottom: 2px;
    color: var(--text-main);
}

.testimonial-card .location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card .stars {
    color: #FFD700;
    margin-top: 15px;
    font-size: 1.1rem;
}


/* --- Tech Stack (Marquee) --- */
.tech-stack-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.tech-marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.tech-item {
    display: inline-block;
    margin: 0 40px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    transition: var(--transition);
}

.tech-item:hover {
    color: var(--neon-cyan);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Our Process --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
    transition: var(--transition);
}

.step-item:hover .step-number {
    background: var(--neon-purple);
    color: #fff;
    transform: scale(1.1);
}

.step-item h4 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 10px;
}

/* --- Employee Voices --- */
.employee-feedback-card {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--neon-pink);
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.employee-feedback-card::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.employee-name {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

.employee-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-muted);
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--neon-cyan);
}

/* --- Final CTA --- */
.cta-section {
    background: linear-gradient(45deg, #1a001a, #001a1a);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .step-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        min-width: 50px;
    }
}