/* === ROOT & GENERAL STYLES === */
:root {
    --color-primary: #00FFF7;
    /* Neon Cyan */
    --color-secondary: #FF2E63;
    /* Hot Pink */
    --color-background: #0D0D0D;
    /* Obsidian */
    --color-surface: #1A1A1A;
    /* Dark Surface */
    --color-surface-light: #252A34;
    --color-text: #EAEAEA;
    --color-text-muted: #A9A9A9;
    --font-primary: 'Poppins', sans-serif;
    --header-height: 80px;
    --glow-primary: 0 0 5px var(--color-primary), 0 0 10px var(--color-primary), 0 0 15px var(--color-primary);
    --glow-secondary: 0 0 5px var(--color-secondary), 0 0 10px var(--color-secondary), 0 0 15px var(--color-secondary);
    --transition-fast: 0.2s ease-in-out;
    --transition-slow: 0.4s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: white;
    text-shadow: var(--glow-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    color: white;
    text-shadow: none;
    box-shadow: var(--glow-secondary);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
    text-shadow: none;
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn i {
    margin-left: 8px;
}

.section-header .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.section-header .section-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* === ANIMATIONS & SCROLL REVEAL === */
.reveal-fade-up,
.reveal-left,
.reveal-right,
.reveal-3d,
.reveal-char {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-fade-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-3d {
    transform: perspective(1000px) rotateY(-20deg) translateX(-50px);
}

.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-char.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.loader-bar {
    width: 150px;
    height: 4px;
    background: var(--color-surface);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: var(--color-primary);
    box-shadow: var(--glow-primary);
    animation: loading 2s ease-out forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
    border-bottom: 1px solid rgba(0, 255, 247, 0.1);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 255, 247, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 80px;
}

.nav-logo img {
    height: 60px;
    transition: var(--transition-fast);
    filter: brightness(0)invert(1);
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 10px var(--color-primary));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    box-shadow: var(--glow-primary);
    transition: width var(--transition-slow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    text-shadow: 0 0 5px var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-text);
    transition: all 0.3s ease-in-out;
}

/* === FOOTER === */
.footer {
    background-color: var(--color-surface);
    padding: 60px 0 30px;
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -10px 30px -15px rgba(0, 255, 247, 0.2);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 40px;
}

.footer-about .footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0)invert(1);
}

.footer-about p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-surface-light);
    border-radius: 50%;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-background);
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--color-text-muted);
}

.footer-links ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.footer-contact ul li i {
    color: var(--color-primary);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact ul li a {
    color: var(--color-text-muted);
}

.footer-contact ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-surface-light);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-text-muted);
}

.footer-legal a {
    color: var(--color-text-muted);
    margin: 0 10px;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-legal span {
    color: var(--color-surface-light);
}

/* === HERO SECTION === */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--color-primary) 1px, transparent 1px),
        linear-gradient(to right, var(--color-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 30s linear infinite;
    opacity: 0.1;
    z-index: -1;
    transform: perspective(600px) rotateX(60deg);
}

@keyframes moveGrid {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -500px -500px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0) 0%, var(--color-background) 80%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.5);
}

.hero-title .reveal-char {
    display: inline-block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--color-text-muted);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* === SERVICES SECTION === */
.services-section {
    background-color: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: transparent;
    border-radius: 10px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    height: 350px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--color-surface-light);
    background: linear-gradient(145deg, var(--color-surface-light), #1a1a1a);
}

.service-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(-145deg, var(--color-primary), var(--color-secondary));
}

.service-card-back h3 {
    color: var(--color-background);
}

.service-card-back ul {
    text-align: left;
    margin: 20px 0;
    flex-grow: 1;
}

.service-card-back ul li {
    margin-bottom: 10px;
    color: var(--color-background);
}

.service-card-back ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

.card-link {
    color: var(--color-background);
    font-weight: 600;
    align-self: flex-start;
}

.card-link:hover {
    color: #fff;
    text-shadow: none;
}

.service-card-front::before,
.service-card-front::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: var(--transition-slow);
    opacity: 0;
}

.service-card-front::before {
    background: radial-gradient(circle at var(--x) var(--y), rgba(0, 255, 247, 0.2), transparent 40%);
}

.service-card:hover .service-card-front::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-shadow: var(--glow-primary);
    transition: var(--transition-fast);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-desc {
    color: var(--color-text-muted);
}

/* === ABOUT SECTION === */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transform: perspective(1500px) rotateY(-5deg);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0, 255, 247, 0.2), transparent 50%);
    z-index: 1;
}

.about-image-wrapper img {
    filter: grayscale(0.5);
}

.about-text-content .subtitle {
    margin-bottom: 15px;
}

.about-text-content .section-title {
    margin-bottom: 25px;
}

.about-text-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--color-primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* === PROCESS SECTION === */
.process-section {
    background-color: var(--color-surface);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-surface-light);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
}

.timeline-content {
    background-color: #0d0d0d;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--color-surface-light);
    position: relative;
    transition: var(--transition-fast);
}

.timeline-item.is-visible .timeline-content {
    border-left-color: var(--color-primary);
    border-left-width: 4px;
    box-shadow: -5px 0 20px rgba(0, 255, 247, 0.1);
}

.timeline-step {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background-color: var(--color-surface);
    border: 2px solid var(--color-surface-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.timeline-item.is-visible .timeline-step {
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

/* === ANALYTICS DASHBOARD SECTION === */
.dashboard-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-surface-light);
    padding-bottom: 20px;
}

.date-range {
    color: var(--color-text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kpi-card,
.chart-card {
    background: var(--color-background);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--color-surface-light);
}

.kpi-card h4 {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 10px;
}

.kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.kpi-change {
    font-weight: 600;
}

.kpi-change.positive {
    color: #00FF7F;
}

.kpi-change.negative {
    color: #FF2E63;
}

.chart-card.large-card {
    grid-column: 1 / 4;
}

.chart-card h4 {
    margin-bottom: 20px;
}

.bar-chart {
    height: 200px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.bar-item::before {
    content: '';
    display: block;
    width: 80%;
    height: var(--bar-value);
    background-color: var(--bar-color);
    border-radius: 5px 5px 0 0;
    margin-top: auto;
    animation: bar-grow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes bar-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.bar-label {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 5px;
}

.bar-value {
    position: absolute;
    top: -25px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    animation: fade-in 1s 0.5s ease-out forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.donut-chart {
    width: 150px;
    height: 150px;
    margin: 25px auto 0;
    border-radius: 50%;
    background: conic-gradient(var(--donut-color) calc(var(--percentage) * 1%), var(--color-surface-light) 0);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: donut-fill 1.5s ease-out;
}

@keyframes donut-fill {
    from {
        --percentage: 0;
    }
}

.donut-center {
    width: 110px;
    height: 110px;
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donut-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.donut-label {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* === INDUSTRIES SECTION === */
.industries-section {
    background-color: var(--color-surface);
}

.industries-wrapper {
    display: flex;
    gap: 2rem;
}

.industry-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-tab {
    background: transparent;
    border: 1px solid var(--color-surface-light);
    color: var(--color-text-muted);
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-align: left;
    min-width: 220px;
}

.industry-tab:hover {
    background: var(--color-surface-light);
    color: #fff;
}

.industry-tab.active {
    background: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.industry-tab i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.industry-content {
    flex: 1;
}

.industry-panel {
    display: none;
    background: var(--color-background);
    padding: 30px;
    border-radius: 8px;
    animation: panel-fade-in 0.5s ease;
}

@keyframes panel-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-panel.active {
    display: block;
}

.industry-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.industry-panel p {
    margin-bottom: 20px;
}

.industry-panel ul {
    list-style: none;
    padding-left: 0;
}

.industry-panel ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.industry-panel ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    top: 2px;
}

/* === TESTIMONIALS SECTION === */
.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background-color: var(--color-surface);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid var(--color-surface-light);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid var(--color-primary);
}

.author-name {
    font-size: 1.2rem;
    color: #fff;
}

.author-title {
    color: var(--color-text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}

.slider-controls button {
    background: var(--color-surface-light);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-controls button:hover {
    background: var(--color-primary);
    color: var(--color-background);
    box-shadow: var(--glow-primary);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--color-background);
    margin-bottom: 20px;
    text-shadow: none;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(13, 13, 13, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn-primary {
    background: var(--color-background);
    color: var(--color-secondary);
    border-color: var(--color-background);
}

.cta-section .btn-primary:hover {
    background: #fff;
    color: var(--color-background);
}

/* === LEGAL & CONTACT PAGES === */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs span {
    color: var(--color-primary);
}

.legal-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 40px;
    border-radius: 10px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.legal-content p,
.legal-content ul li {
    color: var(--color-text-muted);
}

.legal-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 40px;
}

.contact-info-block,
.contact-form-block {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 10px;
}

.contact-info-block h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 20px;
}

.info-text h4 {
    color: #fff;
}

.info-text p,
.info-text p a {
    color: var(--color-text-muted);
}

.contact-social-links {
    margin-top: 30px;
    border-top: 1px solid var(--color-surface-light);
    padding-top: 30px;
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--color-background);
    border: 1px solid var(--color-surface-light);
    border-radius: 5px;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

/* === POPUP === */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup.show {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.popup-content .btn {
    margin-top: 20px;
}

/* === BACK TO TOP & CHAT WIDGET === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-background);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: var(--glow-primary);
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 46, 99, 0.4);
    transition: var(--transition-fast);
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.chat-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--color-surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition-slow);
}

.chat-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chat-header {
    background: var(--color-surface-light);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.close-chat {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
}

.chat-message.received p {
    background: var(--color-surface-light);
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    max-width: 80%;
}

.chat-footer {
    display: flex;
    border-top: 1px solid var(--color-surface-light);
}

.chat-footer input {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    color: #fff;
    outline: none;
}

.chat-footer button {
    background: none;
    border: none;
    padding: 15px;
    color: var(--color-primary);
    cursor: pointer;
}

/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-content {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .industries-wrapper {
        flex-direction: column;
    }

    .industry-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .header {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--color-surface);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        gap: 2rem;
        padding-top: 2rem;
        z-index: 100;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
        z-index: 101;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-card.large-card {
        grid-column: 1 / 3;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .chart-card.large-card {
        grid-column: 1 / 2;
    }
}