/*
==============================================
TABLE OF CONTENTS
==============================================
1.  CSS Custom Properties (Variables)
2.  Base & Reset Styles
3.  Global Helper Classes
4.  Custom Cursor
5.  Site Background & 3D Elements
6.  Header & Navigation
7.  Buttons
8.  Hero Section
9.  Page Header (for internal pages)
10. Section Styles (Shared)
11. Services Section & Cards
12. Process Section (Timeline)
13. Industries Section (Tabs)
14. Testimonials Section (Slider)
15. Tools Section
16. Call to Action (CTA) Section
17. Contact Page
18. Legal Pages
19. Pop-up & Widgets
20. Footer
21. Animations & Keyframes
22. Media Queries (Responsiveness)
==============================================
*/

/* 1. CSS Custom Properties (Variables) */
:root {
    --color-primary: #00f2ea;
    --color-secondary: #8e44ad;
    --color-background: #0a0518;
    --color-surface: #140c2d;
    --color-surface-transparent: rgba(20, 12, 45, 0.5);
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0b8;
    --color-border: rgba(142, 68, 173, 0.2);
    --color-glow: rgba(0, 242, 234, 0.15);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    --header-height: 80px;
    --border-radius: 12px;
    --transition-fast: 0.2s ease-in-out;
    --transition-slow: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Base & Reset Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: 1rem;
}

/* 3. Global Helper Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

/* 4. Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 242, 234, 0.3);
    transition: all 0.1s ease-out;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

a:hover~.cursor-outline,
button:hover~.cursor-outline,
.nav__link:hover~.cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(142, 68, 173, 0.5);
}

/* 5. Site Background & 3D Elements */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 50%, rgba(14, 12, 45, 0.4) 0%, transparent 70%);
    overflow: hidden;
}

.hero__shape,
.page-header__shape,
.cta__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    animation: fadeInShapes 2s ease-out forwards, float 15s infinite ease-in-out;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 242, 234, 0.1);
    top: -50px;
    left: -100px;
}

.hero__shape--2 {
    width: 500px;
    height: 500px;
    background: rgba(142, 68, 173, 0.15);
    bottom: -150px;
    right: -150px;
    animation-delay: 0.5s;
    animation-duration: 20s;
}

.hero__shape--3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 242, 234, 0.08);
    top: 50%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 25s;
}

/* 6. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: var(--color-surface-transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 80px;
    filter: brightness(0) invert(1);
    transition: var(--transition-slow);
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-family: var(--font-secondary);
    color: var(--color-text);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav__toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav__toggle-icon span:nth-child(1) {
    top: 0;
}

.nav__toggle-icon span:nth-child(2) {
    top: 11px;
}

.nav__toggle-icon span:nth-child(3) {
    top: 22px;
}

.nav-open .nav__toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.nav-open .nav__toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav__toggle-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* 7. Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    color: var(--color-primary);
    background: transparent;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px var(--color-glow);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.disabled-btn {
    background: var(--color-surface);
    color: var(--color-text-muted);
    border-color: var(--color-border);
    cursor: not-allowed;
    opacity: 0.7;
}

/* 8. Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--color-glow);
}

.hero__title span {
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--color-text);
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* 9. Page Header (for internal pages) */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-header__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-header__shape--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    background: rgba(0, 242, 234, 0.1);
}

.page-header__shape--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: 10%;
    background: rgba(142, 68, 173, 0.1);
}

.page-header__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text);
}

/* 10. Section Styles (Shared) */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 11. Services Section & Cards */
.services-section {
    background: var(--color-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-surface-transparent);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 40px var(--color-glow);
}

.service-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-card__title {
    margin-bottom: 1rem;
}

.service-card__description {
    margin-bottom: 1.5rem;
}

.service-card__link {
    font-family: var(--font-secondary);
    font-weight: 700;
}

.service-card__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__link i {
    transform: translateX(5px);
}

/* Refraction Hover Lens effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.service-card:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* 12. Process Section (Timeline) */
.process-section {
    background: var(--color-surface);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--color-border);
    top: 0;
    bottom: 0;
    left: 40px;
}

.process-step {
    padding: 2rem 0 2rem 100px;
    position: relative;
}

.process-step__number {
    position: absolute;
    left: 0;
    top: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    z-index: 1;
    transform: translateX(-50%) translateX(40px);
}

.process-step__content {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

/* 13. Industries Section (Tabs) */
.industries-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.industries-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
    width: 250px;
}

.industry-tab {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.industry-tab:hover,
.industry-tab.active {
    background: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px var(--color-glow);
}

.industries-content {
    flex-grow: 1;
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.industry-panel {
    display: none;
}

.industry-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.industry-panel ul {
    list-style: none;
    padding-top: 1rem;
}

.industry-panel ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.industry-panel ul li i {
    color: var(--color-primary);
}


/* 14. Testimonials Section (Slider) */
.testimonials-section {
    background: var(--color-surface);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 3rem;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.author-name {
    color: var(--color-primary);
}

.author-title {
    color: var(--color-text-muted);
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

/* 15. Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tool-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
}

.tool-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* 16. Call to Action (CTA) Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(45deg, var(--color-surface), var(--color-background));
    text-align: center;
    overflow: hidden;
}

.cta__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__shape--1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(0, 242, 234, 0.1);
}

.cta__shape--2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(142, 68, 173, 0.1);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* 17. Contact Page */
.contact-page__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    margin: 0;
}

.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-glow);
}

/* 18. Legal Pages */
.legal-page .legal-content {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-primary);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* 19. Pop-up & Widgets */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 24, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.live-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.live-chat-widget:hover {
    transform: scale(1.1);
}

/* 20. Footer */
.footer {
    background: var(--color-surface);
    padding-top: 80px;
    border-top: 1px solid var(--color-border);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer__logo img {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer__description {
    font-size: 0.9rem;
}

.footer__links h3,
.footer__contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer__links ul li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: var(--color-text-muted);
}

.footer__links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer__contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.footer__contact a {
    color: var(--color-text-muted);
}

.footer__contact i {
    margin-top: 5px;
    color: var(--color-primary);
}

.footer__bottom {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

/* 21. Animations & Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    opacity: 0;
}

.animate-on-load[data-animation="fade-in-up"] {
    animation: fadeInUp 0.8s 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-on-load[data-delay="200"] {
    animation-delay: 0.7s;
}

.animate-on-load[data-delay="400"] {
    animation-delay: 0.9s;
}

/* Ripple Reveal on Scroll */
.ripple-reveal {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ripple-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ripple-reveal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-glow);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.ripple-reveal.is-visible::before {
    animation: ripple 1s ease-out forwards;
}

@keyframes ripple {
    to {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes fadeInShapes {
    to {
        opacity: 1;
    }
}

/* 22. Media Queries (Responsiveness) */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero__title {
        font-size: 4rem;
    }

    .industries-wrapper {
        flex-direction: column;
    }

    .industries-tabs {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 1rem;
    }

    .industry-tab {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .section-padding {
        padding: 80px 0;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-surface-transparent);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    .nav__toggle {
        display: block;
        z-index: 1001;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .contact-page__wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__about,
    .footer__links,
    .footer__contact {
        align-items: center;
    }

    .footer__contact ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .process-timeline::after {
        left: 20px;
    }

    .process-step {
        padding-left: 60px;
    }

    .process-step__number {
        transform: translateX(-50%) translateX(20px);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-slide {
        padding: 0;
    }
}