/* Table of Contents
---
1.  :root Variables
2.  Global Styles & Reset
3.  Utility Classes
4.  Preloader & Cursor
5.  Header & Navigation
6.  Hero Section
7.  Buttons & Forms
8.  Section Styles
9.  Services Section (Arsenal)
10. Data Section
11. Process Section (Battle Plan)
12. Interactive Report Section
13. Testimonials Section
14. CTA Section
15. Footer
16. Subpage Styles (Legal, Contact)
17. Popups & Modals
18. Live Chat Widget
19. Animations & Keyframes
20. Responsive Design
--- */


/* 1. :root Variables */
:root {
    --primary-color: #4A00E0;
    --secondary-color: #8E2DE2;
    --accent-color: #00BFFF;
    --text-light: #F0F2F5;
    --text-dark: #1C1E21;
    --text-muted: #a0aec0;
    --bg-dark-primary: #0f0c29;
    --bg-dark-secondary: #1a153c;
    --bg-light: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s ease;
}

/* 2. Global Styles & Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--text-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    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: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

/* 4. Preloader & Cursor */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    margin-bottom: 20px;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-logo img {
    max-width: 100px;
}

.preloader-bar {
    width: 150px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    animation: loading 2s ease-in-out forwards;
}

.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 191, 255, 0.2);
    border-color: transparent;
}

/* 5. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: transparent;
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.header.scrolled {
    background-color: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    max-height: 40px;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.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: var(--accent-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: all var(--transition-speed);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark-secondary);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav nav ul {
    text-align: center;
}

.mobile-nav nav li {
    margin: 2rem 0;
}

.mobile-nav nav a {
    font-size: 1.5rem;
    color: var(--text-light);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 6. Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoom-in 20s ease-in-out infinite alternate;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 12, 41, 0.4) 0%, rgba(15, 12, 41, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-3d-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: var(--border-radius);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    transform-style: preserve-3d;
    animation: rotate3d 20s linear infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 15%;
    transform-style: preserve-3d;
    animation: rotate3d 15s linear infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    transform-style: preserve-3d;
    animation: rotate3d 25s linear infinite;
}

/* 7. Buttons & Forms */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    z-index: 2;
}

.btn i {
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--secondary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-family);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.form-submit-btn {
    width: 100%;
}


/* 8. Section Styles */
.section-padding:nth-of-type(odd) {
    background-color: var(--bg-dark-primary);
}

.section-padding:nth-of-type(even) {
    background-color: var(--bg-dark-secondary);
    background-image: url('images/bg-pattern.png');
    background-repeat: repeat;
}


/* 9. Services Section (Arsenal) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-dark-secondary), var(--bg-dark-primary));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.service-card-inner {
    padding: 2.5rem 2rem;
    transform: translateZ(20px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    height: 50px;
    width: 50px;
}

.service-title {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    font-weight: 600;
    color: var(--accent-color);
}

.service-link i {
    transition: transform var(--transition-speed);
    margin-left: 0.25rem;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 10. Data Section */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.data-item {
    background-color: var(--bg-dark-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.data-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.data-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.data-value::after {
    content: '%';
    font-size: 1.5rem;
    margin-left: 5px;
    color: var(--accent-color);
}

.data-item:nth-child(3) .data-value::after {
    content: 'B+';
}

.data-item:nth-child(4) .data-value::after {
    content: '+';
}

.data-label {
    color: var(--text-muted);
}

/* 11. Process Section (Battle Plan) */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    z-index: 0;
    animation: grow-line 2s ease-out forwards;
    transform-origin: top;
}

.process-step {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-step-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    background-color: var(--bg-dark-secondary);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    text-align: center;
    z-index: 1;
}

.process-step:nth-child(odd) .process-step-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-step-icon {
    left: -30px;
}

.process-step-content {
    padding: 20px;
    background: var(--bg-dark-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* 12. Interactive Report Section */
.interactive-report-section {
    background-color: var(--bg-dark-primary);
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.report-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease;
}

.report-visual img:hover {
    transform: scale(1.05) rotate(2deg);
}

.report-content .section-title {
    text-align: left;
    display: block;
}

.report-content .section-title::after {
    left: 0;
    transform: none;
}

.report-content p {
    margin-bottom: 2rem;
}

/* 13. Testimonials Section */
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-speed);
}

.testimonial-slide {
    min-width: 100%;
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-name {
    font-weight: 600;
}

.author-title {
    margin: 0;
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    pointer-events: all;
}

.slider-controls button:hover {
    background-color: var(--accent-color);
}

/* 14. CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: var(--text-light);
    color: var(--text-dark);
}

.cta-section .btn-primary:hover {
    background: var(--bg-dark-primary);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


/* 15. Footer */
.footer {
    background-color: var(--bg-dark-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 40px;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 1rem;
}

.footer-about-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all var(--transition-speed);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col-title {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul a {
    color: var(--text-muted);
}

.footer-links ul a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.contact-info-list a {
    color: var(--text-muted);
}

.contact-info-list i {
    margin-top: 5px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 16. Subpage Styles (Legal, Contact) */
.subpage .header {
    background-color: var(--bg-dark-primary);
}

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(15, 12, 41, 0.9), rgba(15, 12, 41, 0.9)), url('images/bg-hero.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs span {
    color: var(--text-light);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.legal-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--accent-color);
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-section {
    background-color: var(--bg-dark-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background-color: var(--bg-dark-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* 17. Popups & Modals */
.popup,
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup.active,
.modal.active {
    opacity: 1;
    visibility: visible;
}

.popup-content,
.modal-content {
    background: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup.active .popup-content,
.modal.active .modal-content {
    transform: scale(1);
}

.popup-close,
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.popup h3 {
    margin-bottom: 0.5rem;
}

.modal-content img {
    max-width: 90vw;
    max-height: 80vh;
}

/* 18. Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-speed);
    z-index: 999;
}

.live-chat-widget:hover {
    transform: scale(1.1);
}


/* 19. Animations & Keyframes */
@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes zoom-in {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes rotate3d {
    from {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes grow-line {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.animate-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-down {
    transform: translateY(-50px);
}

.fade-in-left {
    transform: translateX(50px);
}

.fade-in-right {
    transform: translateX(-50px);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* 20. Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .header-cta {
        display: none;
    }

    .report-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .report-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .contact-grid {
        padding: 2rem;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left !important;
    }

    .process-step:nth-child(even) {
        left: 0;
    }

    .process-step-icon {
        left: 0 !important;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    body {
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        display: none;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info-list li {
        justify-content: center;
    }
}