:root {
    --bg-dark: #030305;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(20, 20, 20, 0.7);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent: #00f2ff;
    --accent-gradient: linear-gradient(135deg, #00f2ff 0%, #0051ff 100%);
    --accent-glow: rgba(0, 242, 255, 0.4);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-dark);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 6px;
    border: 3px solid var(--bg-dark);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body::before,
body::after {
    content: '';
    position: fixed;
    left: 50%;
    top: 50%;
    width: 120vmax;
    height: 120vmax;
    border-radius: 50%;
    z-index: -2;
    filter: blur(150px);
    opacity: 0.15;
}

body::before {
    background: radial-gradient(circle, var(--accent) 0%, transparent 50%);
    transform: translate(-60%, -60%);
    animation: aurora-1 25s infinite alternate ease-in-out;
}

body::after {
    background: radial-gradient(circle, #0051ff 0%, transparent 50%);
    transform: translate(10%, 10%);
    animation: aurora-2 30s infinite alternate ease-in-out;
    animation-delay: -5s;
}

@keyframes aurora-1 {
    to {
        transform: translate(-30%, -30%) rotate(15deg);
    }
}

@keyframes aurora-2 {
    to {
        transform: translate(-20%, -40%) rotate(-15deg);
    }
}

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

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn:hover,
.btn:focus-visible {
    color: #fff;
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--accent-glow);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    padding: 100px 0;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.logo img {
    height: 2.5rem;
    margin-right: 12px;
    vertical-align: -10px;
}

.logo span {
    color: var(--accent); 
    text-shadow: 0 0 15px var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle, rgba(0, 81, 255, 0.04) 0%, transparent 40%);
    background-position: 0% 0%, 100% 100%;
    animation: bgMove 15s linear infinite alternate;
    z-index: -1;
}

@keyframes bgMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(10deg); }
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    filter: drop-shadow(0 0 25px var(--accent-glow));
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-dot 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-card);
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: var(--transition);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: center;
}

.team-card:hover::after {
    transform: scaleX(1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #222, #111);
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 2px solid transparent;
    background-image: linear-gradient(#111, #111), var(--accent-gradient);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .avatar {
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--accent-glow);
}

.team-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role {
    color: #fff;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.05);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.tech-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(0, 242, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 242, 255, 0.2);
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.team-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-socials a:hover, .team-socials a:focus-visible {
    color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    transform: translateY(-3px);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-glow);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.service-item:hover::before {
    height: 100%;
    box-shadow: 0 0 15px var(--accent-glow);
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 242, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-item:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.2));
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.service-item h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.service-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.service-item:hover h3::after {
    width: 100%;
    box-shadow: 0 0 10px var(--accent-glow);
}

.service-item p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

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

.project-card {
    position: relative;
    height: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-glow);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 3, 5, 0.95) 0%, rgba(3, 3, 5, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: translate(0, 0);
    box-shadow: 0 0 15px var(--accent-glow);
    color: var(--accent);
    border-color: rgba(0, 242, 255, 0.3);
}

.project-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-overlay p {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.project-card:hover .project-overlay h3 {
    transform: translateY(0);
}

.project-card:hover .project-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info-panel {
    background: rgba(0, 242, 255, 0.02);
    padding: 40px;
    border-radius: 16px;
    border: 1px dashed rgba(0, 242, 255, 0.15);
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-info-panel > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.method-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.05);
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(0, 81, 255, 0.1));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.method-details a, .method-details p {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.method-details a:hover {
    color: var(--accent);
}

.contact-form {
    padding: 30px 20px 20px 10px;
}

@media (max-width: 992px) {
    .contact-form {
        padding: 10px 20px 30px 20px;
    }
    .contact-info-panel {
        padding: 30px 20px;
    }
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 25px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}

.input-with-icon.align-top i {
    top: 25px;
}

.form-group.input-with-icon input,
.form-group.input-with-icon textarea {
    padding-left: 55px;
}

.input-with-icon input:focus ~ i, .input-with-icon textarea:focus ~ i,
.input-with-icon input:focus-visible ~ i, .input-with-icon textarea:focus-visible ~ i,
.input-with-icon input:not(:placeholder-shown) ~ i, .input-with-icon textarea:not(:placeholder-shown) ~ i {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.03);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.contact-form .btn {
    position: relative;
    border: 1px solid var(--accent);
    background: rgba(0, 242, 255, 0.05);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    padding: 18px 36px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form .btn:hover {
    color: #030305;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 242, 255, 0.5), 0 0 15px rgba(0, 242, 255, 0.3);
}

.contact-form .btn:hover::before {
    opacity: 1;
}

.form-status {
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    min-height: 20px;
}

.form-status.success {
    color: #4ade80;
}

.form-status.error {
    color: #f87171;
}

/* --- HERO BUTTONS --- */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover, .btn-outline:focus-visible {
    background: rgba(0, 242, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3) inset;
    color: #fff;
    transform: translateY(-2px);
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 242, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question.active {
    color: var(--accent);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- MEGA FOOTER --- */
.mega-footer {
    background: linear-gradient(to top, rgba(0, 242, 255, 0.03) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 20px 0;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.mega-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

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

.footer-brand .logo {
    justify-content: flex-start;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 80%;
}

.footer-links h4, .footer-socials h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.social-links-grid a i {
    font-size: 1.2rem;
    color: var(--accent);
}

.social-links-grid a:hover {
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
    color: #fff;
    transform: translateX(5px);
}

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

.footer-partners {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-partners span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.footer-partners a {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.footer-partners a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Cursor */
@media (pointer: fine) {
    body, a, button, input, textarea, .hamburger, .project-card, .team-card, .service-item {
        cursor: none;
    }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, opacity 0.3s;
    opacity: 0; 
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
    opacity: 0;
}

.custom-cursor-follower.hovering {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 242, 255, 0.1);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: transparent;
}

/* Particle Canvas */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    z-index: 1;
    position: relative;
    pointer-events: auto;
}

/* Typewriter cursor blink */
.typewriter {
    border-right: 0.08em solid var(--accent);
    animation: blink-caret 0.75s step-end infinite;
    white-space: nowrap;
    display: inline-block !important;
    width: max-content;
    margin: 0 auto;
    padding-right: 4px;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

/* Tilt effects */
.tilt {
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.6);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.1);
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

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

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

    .footer-logo, .social-links {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}