/*
--- TABLE OF CONTENTS ---
1.  Setup & Variables
2.  Global Styles & Resets
3.  Custom Cursor
4.  Buttons & Forms
5.  Header & Navigation
6.  Footer
7.  Animations & Utility Classes
8.  Page-Specific: Home Page
    8.1 Hero Section
    8.2 Services Section
    8.3 Process Section
    8.4 Industries Section
    8.5 ROI Calculator Section
    8.6 Testimonials Section
    8.7 CTA Section
9.  Page-Specific: Inner Pages
    9.1 Page Header Section
    9.2 Contact Page Section
    9.3 Legal Content Section
10. Live Chat Widget
11. Responsiveness (Media Queries)
*/


/* --- 1. Setup & Variables --- */
:root {
    --primary-color: #5A4FCF;
    --secondary-color: #1A1A3D;
    --accent-color: #00F5D4;
    --bg-dark: #0F0F23;
    --bg-light: #15152e;
    --text-light: #E0E0E0;
    --text-dark: #A0A0C0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --header-height: 80px;
}

/* --- 2. Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
button:hover {
    cursor: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a6ff0;
}

/* --- 3. Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

a:hover~.cursor-outline,
button:hover~.cursor-outline,
input:hover~.cursor-outline,
textarea:hover~.cursor-outline,
select:hover~.cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 245, 212, 0.1);
}

/* --- 4. Buttons & Forms --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    color: var(--bg-dark);
    border-color: #fff;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-dark);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--bg-light);
    padding: 0 5px;
    color: var(--primary-color);
}

.select-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23A0A0C0' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

select option {
    background: var(--secondary-color);
    color: var(--text-light);
}


/* --- 5. Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.header.scrolled {
    background-color: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-img {
    height: 80px;
    margin-right: 10px;
    transition: transform 0.4s ease;
    filter: brightness(0) invert(1);
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    background: none;
    border: none;
}

.nav-close {
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* --- 6. Footer --- */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-about-text {
    margin: 20px 0;
}

.footer-logo {
    font-size: 1.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--bg-light);
    text-align: center;
}

span.active-legal-link {
    color: #fff;
    font-weight: 500;
}


/* --- 7. Animations & Utility Classes --- */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
}

.animate-in[data-animation="fade-in-up"].visible {
    animation: fade-in-up 0.8s forwards;
}

.animate-in[data-animation="fade-in-right"].visible {
    animation: fade-in-right 0.8s forwards;
}

.animate-in[data-animation="fade-in-left"].visible {
    animation: fade-in-left 0.8s forwards;
}

.animate-in[data-animation="zoom-in"].visible {
    animation: zoom-in 0.8s forwards;
}


/* --- 8. Page-Specific: Home Page --- */

/* 8.1 Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-bg-shape {
    position: absolute;
    top: -150px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(90, 79, 207, 0) 70%);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 10s infinite alternate;
}

.hero-3d-shapes .shape {
    position: absolute;
    background: rgba(90, 79, 207, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 40px) rotate(45deg);
    }

    50% {
        transform: translate(-30px, 10px) rotate(90deg);
    }

    75% {
        transform: translate(40px, -30px) rotate(135deg);
    }

    100% {
        transform: translate(0, 0) rotate(180deg);
    }
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-duration: 25s;
}

.shape-2 {
    top: 60%;
    left: 5%;
    width: 50px;
    height: 50px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.shape-3 {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-4 {
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    animation-duration: 30s;
    animation-delay: 1s;
}

/* 8.2 Services Section */
.services-section {
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 8.3 Process Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--bg-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.process-step {
    padding: 30px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.process-step:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.process-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 4px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.process-step:nth-child(odd) .process-number {
    right: -30px;
}

.process-step:nth-child(even) .process-number {
    left: -30px;
}

.process-title {
    color: var(--accent-color);
    margin-bottom: 10px;
}


/* 8.4 Industries Section */
.industries-section {
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.industry-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.industry-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    transition: color 0.4s ease;
}

.industry-item:hover i {
    color: #fff;
}

.industry-item h3 {
    font-size: 1.1rem;
    transition: color 0.4s ease;
}

/* 8.5 ROI Calculator Section */
.roi-calculator-section {
    background: var(--secondary-color);
}

.roi-calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
}

.roi-form-container {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
}

#roi-calculator .form-group {
    margin-bottom: 1.5rem;
}

#roi-calculator label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

#roi-calculator input[type="number"] {
    border: none;
    border-bottom: 2px solid var(--text-dark);
    border-radius: 0;
    padding: 10px 0;
}

.slider {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    background: var(--text-dark);
    border-radius: 5px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
}

.slider-value {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--accent-color);
}

.roi-result {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
}

.roi-result h4 {
    color: var(--text-dark);
}

.roi-result p {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 700;
}

/* 8.6 Testimonials Section */
.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
    transform: rotate(180deg);
}

.author-name {
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: var(--primary-color);
}

.prev-btn {
    margin-left: -70px;
}

.next-btn {
    margin-right: -70px;
}

/* 8.7 CTA Section */
.cta-section {
    background: linear-gradient(rgba(26, 26, 61, 0.9), rgba(26, 26, 61, 0.9)), url('https://via.placeholder.com/1920x800') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* --- 9. Page-Specific: Inner Pages --- */

/* 9.1 Page Header Section */
.page-header-section {
    padding: 140px 0 80px;
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
}

.page-header-section .hero-bg-shape {
    opacity: 0.1;
    top: -100px;
    right: -150px;
}

.page-header-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.breadcrumbs span {
    color: var(--text-dark);
}

.breadcrumbs a span {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover span {
    color: var(--accent-color);
}

.breadcrumbs i {
    color: var(--primary-color);
}

/* 9.2 Contact Page Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.info-text h4 {
    margin-bottom: 5px;
}

/* 9.3 Legal Content Section */
.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-content p,
.legal-content ul li {
    color: var(--text-dark);
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.legal-content a {
    font-weight: 600;
}

/* --- 10. Live Chat Widget --- */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.live-chat-widget:hover {
    transform: scale(1.1);
}

/* --- 11. Responsiveness (Media Queries) --- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .header .btn {
        display: none;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left !important;
        left: 0 !important;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        padding-left: 80px;
    }

    .process-step .process-number {
        left: 0px !important;
    }

    .roi-calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        display: none;
    }

    .testimonial-slider {
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .logo span {
        display: none;
    }

    .page-header-section h1 {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .nav-menu {
        width: 100%;
    }
}