/* =========================================
   CSS Variables & Reset
   ========================================= */
:root {
    /* Colors */
    --bg-main: #0a0a0f;
    /*#0a0a0f*/
    --bg-secondary: #13141f;
    --bg-card: rgba(255, 255, 255, 0.03);

    --text-main: #f8f8f8;
    --text-muted: #a0a0b0;

    --neon-blue: #00f3ff;
    --neon-blue-dark: #0099ff;
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-dark));

    /* Layout */
    --container-width: 1440px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.site-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   Typography & Utilities
   ========================================= */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-blue-dark), var(--neon-blue));
    z-index: -1;
    transition: opacity var(--transition-normal);
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--neon-blue);
}

.btn-outline:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
}

/* =========================================
   Header & Navigation
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-normal);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.animated-logo-icon {
    overflow: visible;
}

.animated-logo-icon.inline {
    height: 0.6em;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 -0.05em;
    transform: translateY(-0%);
}

.logo-path {
    fill: none;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
    animation: drawLogo 30s ease infinite, glowPulse 3s infinite alternate;
}

@keyframes drawLogo {
    0% {
        stroke-dashoffset: 130;
    }

    6.66% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 2px var(--neon-blue));
    }

    100% {
        filter: drop-shadow(0 0 8px var(--neon-blue-dark));
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* =========================================
   Sections General
   ========================================= */
section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    padding-top: var(--header-height);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, rgba(10, 10, 15, 1) 40%);
    z-index: -1;
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* =========================================
   About Section
   ========================================= */
.about-section {
    background-color: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 550px;
    justify-self: end;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.about-features i {
    color: var(--neon-blue);
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.2);
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.profile-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 243, 255, 0.3);
}

.gradient-bg {
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.2), rgba(0, 153, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

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

    100% {
        left: 100%;
    }
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* =========================================
   Portfolio Section
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 243, 255, 0.3);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Lightbox
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    transform: scale(0.8);
    transition: transform var(--transition-normal);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--neon-blue);
    text-decoration: none;
    cursor: pointer;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--neon-blue);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--neon-blue);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.checkbox-group a:hover {
    color: var(--neon-blue-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--bg-main);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

footer p {
    color: var(--text-muted);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* =========================================
   Animations Classes
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
}

.fade-in {
    transform: translateY(0);
}

.fade-in-up {
    transform: translateY(40px);
}

.slide-in-left {
    transform: translateX(-40px);
}

.slide-in-right {
    transform: translateX(40px);
}

/* When the 'visible' class is added via JS */
.animate-on-scroll.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem !important;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        max-width: 100%;
        justify-self: start;
    }

    .about-image {
        order: -1;
        /* Image on top in mobile */
    }

    .portfolio-overlay {
        display: flex !important;
        opacity: 1 !important;
        background: rgba(10, 10, 15, 0.4);
    }

    .portfolio-link {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .burger-menu {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: calc(var(--header-height) + 0.3rem) 1.5rem 1.2rem 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 243, 255, 0.1);
        z-index: 999;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    }

    .nav-links.nav-active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0.2rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Burger animation */
    .burger-menu.toggle .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.toggle .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.3rem !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem !important;
    }

    .container {
        padding: 0 1rem;
    }
}

/* =========================================
   Custom Modals (Case Study & Iframe)
   ========================================= */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.custom-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.custom-modal-content {
    background: var(--bg-main);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.custom-modal.active .custom-modal-content {
    transform: translateY(0);
}

.custom-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-muted);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.custom-modal-close:hover {
    color: var(--neon-blue);
}

.case-study-body {
    padding: 3rem;
    color: var(--text-main);
}

.iframe-modal-content {
    max-width: 1000px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow-y: visible;
}

/* Device Laptop Mockup CSS */
.device-laptop {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    border: 15px solid #222;
    border-radius: 15px 15px 0 0;
    position: relative;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.device-laptop::after {
    content: '';
    display: block;
    width: 120%;
    height: 25px;
    background: linear-gradient(to bottom, #dcdcdc, #888);
    position: absolute;
    bottom: -40px;
    left: -10%;
    border-radius: 0 0 15px 15px;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.device-laptop::before {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background: #aaa;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 5px 5px;
    z-index: 1;
}

.device-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.device-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments for Laptop Mockup */
@media (max-width: 768px) {
    .device-laptop {
        border-width: 5px;
        border-radius: 10px;
    }

    .device-laptop::after,
    .device-laptop::before {
        display: none;
    }

    .device-screen {
        aspect-ratio: auto;
        height: 75vh;
    }
}

/* =========================================
   Auditor Section
   ========================================= */
.auditor-section {
    padding: 8rem 0;
    position: relative;
}

.auditor-content {
    max-width: 800px;
    margin: 0 auto;
}

.auditor-card {
    padding: 3rem;
    border-radius: 20px;
}

.auditor-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.auditor-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.auditor-form .form-group {
    margin-bottom: 1.5rem;
}

.auditor-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-main);
    transition: all var(--transition-normal);
}

.auditor-form input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.text-center {
    text-align: center;
}

.audit-simple-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--neon-blue);
    border-radius: 30px;
    color: var(--neon-blue);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audit-simple-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.audit-simple-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    color: var(--neon-blue);
    box-shadow: none;
}

.audit-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.audit-loading-container.hidden {
    display: none;
}

.audit-loading-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(0, 243, 255, 0.2);
    border-top-color: var(--neon-blue);
    animation: spin 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    flex-shrink: 0;
}

.audit-loading-text {
    position: absolute;
    font-size: 1.1rem;
    white-space: nowrap;
    line-height: 1;
    color: var(--neon-blue);
    font-weight: bold;
    animation: spin-reverse 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

.audit-loading-status {
    color: var(--text-light);
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.audit-result {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease;
}

.audit-result.hidden {
    display: none;
}

.result-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.audit-result-title {
    font-size: 2.25rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.score-circle {
    width: auto;
    height: auto;
    min-width: 80px;
    min-height: 80px;
    padding: 20px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    border: 3px solid var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5), inset 0 0 15px rgba(0, 243, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
}

.score-circle span {
    font-size: 2rem;
}

.result-body h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-good {
    background: transparent;
    border: 2px solid var(--neon-blue);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.1);
}

.neon-good-title i {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.result-issues {
    background: transparent;
    border: 2px solid #ff3366;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3), inset 0 0 10px rgba(255, 51, 102, 0.15);
}

.neon-issues-title i {
    color: #ff3366;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.6);
}

.result-issues ul {
    list-style-type: none;
    margin-left: 0;
}

.result-issues li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.result-issues li::before {
    content: "•";
    color: #ff3366;
    text-shadow: 0 0 8px rgba(255, 51, 102, 0.8);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.result-cta {
    text-align: center;
    padding-top: 1.5rem;
}

.result-cta p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* =========================================
   Custom Improvements (AI Audit feedback)
   ========================================= */
.cta-arrow {
    margin-left: 8px;
    transition: transform var(--transition-normal);
}

.btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* Floating Background Glows */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.03) 0%, rgba(0, 153, 255, 0) 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -10%;
    left: -200px;
    animation: floatGlow1 25s ease-in-out infinite alternate;
}

.bg-glow-2 {
    bottom: 10%;
    right: -200px;
    animation: floatGlow2 30s ease-in-out infinite alternate;
}

@keyframes floatGlow1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 150px) scale(1.1);
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(-120px, -100px) scale(0.9);
    }
}