/*
================================================
ASTRAL INTERFACE THEME (V2.1 - VISIBILITY FIX)
================================================
* Coded by AI
* Theme: The Cosmic Dashboard of Tomorrow
* Palette:
*   --deep-space: #0A001A
*   --galaxy-violet: #7B61FF
*   --star-white: #FFFFFF
*   --light-slate: #ccd6f6
*   --slate: #8892b0
================================================
*/

/* 1. CSS VARIABLES & RESET */
:root {
    --deep-space: #0A001A;
    --galaxy-violet: #7B61FF;
    --galaxy-violet-transparent: rgba(123, 97, 255, 0.1);
    --galaxy-violet-hover: #9a88ff;
    --star-white: #FFFFFF;
    --light-slate: #ccd6f6;
    --slate: #8892b0;
    --header-bg: rgba(10, 0, 26, 0.8);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--deep-space);
    color: var(--slate);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--deep-space);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--galaxy-violet);
    border-radius: 20px;
    border: 2px solid var(--deep-space);
}

/* 2. REUSABLE COMPONENTS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--light-slate);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--galaxy-violet);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--galaxy-violet);
    color: var(--star-white);
    border: 2px solid var(--galaxy-violet);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 250px;
    height: 250px;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--star-white);
    border: 2px solid var(--star-white);
}

.btn-secondary:hover {
    background: var(--star-white);
    color: var(--deep-space);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* 3. CUSTOM CURSOR & OPTIMIZED STARFIELD */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
    will-change: transform;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--galaxy-violet);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--galaxy-violet);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-interact {
    width: 60px;
    height: 60px;
    border-color: var(--star-white);
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    perspective: 800px;
    transform-style: preserve-3d;
}

.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

#stars-small {
    background-image: radial-gradient(1px 1px at 25px 15px, white, transparent),
        radial-gradient(1px 1px at 70px 100px, white, transparent),
        radial-gradient(1px 1px at 150px 50px, white, transparent);
    background-size: 200px 200px;
    transform: translateZ(-2000px) scale(3.5);
}

#stars-medium {
    background-image: radial-gradient(1.5px 1.5px at 50px 80px, white, transparent),
        radial-gradient(1.5px 1.5px at 120px 20px, white, transparent),
        radial-gradient(2px 2px at 180px 140px, white, transparent);
    background-size: 250px 250px;
    transform: translateZ(-1000px) scale(2);
}

#stars-large {
    background-image: radial-gradient(2px 2px at 100px 100px, white, transparent),
        radial-gradient(2.5px 2.5px at 220px 50px, white, transparent);
    background-size: 300px 300px;
    transform: translateZ(-500px) scale(1.5);
}


/* 4. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 97, 255, 0.2);
    transition: transform 0.4s ease-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    filter: invert(1);
    margin-right: 10px;
}

.logo-text {
    font-family: var(--font-secondary);
    color: var(--star-white);
    font-size: 1.5rem;
    font-weight: 900;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--light-slate);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--galaxy-violet);
    transition: transform var(--transition-speed);
    transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--star-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle,
.nav-close {
    display: none;
}

/* 5. HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* [FIX] Removed opacity: 0; GSAP now handles the initial state */
.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--star-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-slate);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.2) 0%, rgba(123, 97, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-down-indicator a {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--slate);
    border-radius: 20px;
    position: relative;
}

.scroll-down-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--slate);
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* 6. SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--galaxy-violet-transparent);
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(123, 97, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    background-color: var(--deep-space);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--galaxy-violet);
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--light-slate);
    margin-bottom: 15px;
}

.service-description {
    color: var(--slate);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: var(--galaxy-violet);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.service-link:hover {
    color: var(--galaxy-violet-hover);
}

.service-link i {
    transition: transform var(--transition-speed);
    margin-left: 5px;
    display: inline-block;
}

.service-link:hover i {
    transform: translateX(8px);
}

/* 7. PROCESS SECTION */
.process-section {
    background: linear-gradient(rgba(10, 0, 26, 0.5), rgba(10, 0, 26, 0.5)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBmaWxsPSJyZ2JhKDEyMyw5NywyNTUsMC4wNSkiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTIyIDVoM3YyM2gtM3pNMjggNWgzdjIzaC0zek02IDVoM3YyM0g2ek0wIDVoM3YyM0gwek0xNCA1aDN2MjNoLTN6TTIgMjJoMjh2M0gyek0yIDExaDI4djNIMnpNMiAzaDI4djNIMnoiLz48L3N2Zz4=');
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--galaxy-violet-transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-line-progress {
    position: absolute;
    width: 3px;
    background: var(--galaxy-violet);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    height: 0;
    /* Animated by GSAP */
}


.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-step::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    top: 15px;
    background: var(--deep-space);
    border: 4px solid var(--galaxy-violet);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:nth-child(odd)::after {
    right: -12.5px;
}

.process-step:nth-child(even)::after {
    left: -12.5px;
}

.process-step-content {
    padding: 20px 30px;
    background: var(--deep-space);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: var(--border-radius);
    position: relative;
}

.process-step-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--galaxy-violet);
    position: absolute;
    top: -15px;
    opacity: 0.2;
}

.process-step:nth-child(odd) .process-step-number {
    right: 20px;
}

.process-step:nth-child(even) .process-step-number {
    left: 20px;
}

.process-step-title {
    font-size: 1.5rem;
    color: var(--light-slate);
    margin-bottom: 10px;
}

/* 8. INDUSTRIES SECTION */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    background: var(--galaxy-violet-transparent);
    border: 1px solid rgba(123, 97, 255, 0.3);
    padding: 20px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--light-slate);
    transition: all var(--transition-speed);
}

.industry-item:hover {
    background: var(--galaxy-violet);
    color: var(--star-white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(123, 97, 255, 0.4);
}

.industry-item i {
    font-size: 1.5rem;
    color: var(--galaxy-violet);
    transition: color var(--transition-speed);
}

.industry-item:hover i {
    color: var(--star-white);
}

/* 9. TESTIMONIALS SECTION */
.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: var(--galaxy-violet-transparent);
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    position: relative;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--galaxy-violet);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-slate);
    margin-bottom: 30px;
    min-height: 120px;
}

.author-name {
    font-family: var(--font-secondary);
    color: var(--star-white);
    font-size: 1.2rem;
}

.author-title {
    color: var(--slate);
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.slider-btn {
    pointer-events: all;
    background: rgba(123, 97, 255, 0.2);
    border: 1px solid rgba(123, 97, 255, 0.4);
    color: var(--star-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.slider-btn:hover {
    background: var(--galaxy-violet);
    transform: scale(1.1);
}

.slider-btn.prev-btn {
    margin-left: -20px;
}

.slider-btn.next-btn {
    margin-right: -20px;
}


/* 10. CTA SECTION */
.cta-section {
    background: var(--galaxy-violet);
    padding: 80px 0;
    color: var(--star-white);
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--star-white);
    color: var(--deep-space);
    border-color: var(--star-white);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--star-white);
    box-shadow: none;
}

/* 11. FOOTER */
.footer {
    background-color: #060011;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(123, 97, 255, 0.2);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col .logo-img {
    height: 45px;
}

.footer-about-text {
    margin: 20px 0;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--slate);
    border-radius: 50%;
    color: var(--slate);
    text-decoration: none;
    margin-right: 10px;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    color: var(--star-white);
    background: var(--galaxy-violet);
    border-color: var(--galaxy-violet);
}

.footer-col-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--light-slate);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul a,
.footer-contact ul a {
    color: var(--slate);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links ul a:hover,
.footer-contact ul a:hover {
    color: var(--galaxy-violet);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--galaxy-violet);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 97, 255, 0.1);
}

/* 12. CONTACT PAGE & LEGAL PAGES */
.page-header-section {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--deep-space) 0%, rgba(10, 0, 26, 0) 100%);
}

.page-header-section h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--star-white);
    margin-bottom: 15px;
}

.breadcrumbs a {
    color: var(--slate);
    text-decoration: none;
}

.breadcrumbs span {
    color: var(--light-slate);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contact-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--light-slate);
    margin-bottom: 15px;
}

.contact-subtitle {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--galaxy-violet);
    width: 40px;
}

.info-text h4 {
    font-size: 1.2rem;
    color: var(--light-slate);
    margin-bottom: 5px;
}

.info-text a {
    color: var(--slate);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.info-text a:hover {
    color: var(--galaxy-violet);
}

.contact-form-wrapper {
    background: var(--galaxy-violet-transparent);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(123, 97, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-slate);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: #0f0223;
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 5px;
    color: var(--star-white);
    font-family: var(--font-primary);
    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(--galaxy-violet);
    box-shadow: 0 0 10px rgba(123, 97, 255, 0.5);
}

.form-group select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237B61FF'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 24px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--galaxy-violet-transparent);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(123, 97, 255, 0.2);
}

.legal-content h2 {
    font-family: var(--font-secondary);
    color: var(--light-slate);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 15px;
}

.active-legal-link {
    color: var(--galaxy-violet);
    font-weight: bold;
}

/* 13. ANIMATIONS */
.animate-in {
    /* [FIX] Opacity is now handled by GSAP to prevent conflicts */
    will-change: transform, opacity;
}

/* 14. RESPONSIVENESS */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        max-width: 300px;
        height: 100%;
        background: var(--deep-space);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        z-index: 1001;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--star-white);
        cursor: pointer;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--star-white);
        background: none;
        border: none;
        cursor: pointer;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::after,
    .process-line-progress {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .process-step::after {
        left: 18px;
    }

    .process-step:nth-child(odd)::after,
    .process-step:nth-child(even)::after {
        right: auto;
        left: 18px;
    }

    .process-step:nth-child(odd) .process-step-number,
    .process-step:nth-child(even) .process-step-number {
        right: auto;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .testimonial-text {
        min-height: 150px;
    }

    .slider-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}