/* =========================================================================
   ALPHA CONNECTS — Modern Premium Redesign
   Colors restricted strictly to: #1412bd and #eaedff
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
    --primary: #1412bd;
    --primary-light: rgba(20, 18, 189, 0.1);
    --primary-hover: rgba(20, 18, 189, 0.8);
    --bg: #eaedff;
    --bg-alt: #ffffff;
    --text: #1412bd;
    --text-light: rgba(20, 18, 189, 0.7);
    --border: rgba(20, 18, 189, 0.1);

    --radius: 16px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --fast: 0.25s ease;

    --shadow: 0 10px 30px rgba(20, 18, 189, 0.08);
    --shadow-hover: 0 20px 40px rgba(20, 18, 189, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    color: var(--primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--bg) !important;
}

.text-light {
    color: rgba(234, 237, 255, 0.8) !important;
}

.bg-light {
    background-color: var(--bg-alt);
}

/* =========================================
   Premium UI Components
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg);
    box-shadow: 0 4px 14px rgba(20, 18, 189, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 18, 189, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.magnetic-btn {
    position: relative;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    width: 0%;
    z-index: 9999;
    border-radius: 0 2px 2px 0;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(234, 237, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(20, 18, 189, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 100px;
    width: auto;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 75px;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-cta {
    background: var(--primary);
    color: var(--bg);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 18, 189, 0.2);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--bg);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-overlay.active .mobile-nav-panel {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
    color: var(--primary);
    transition: transform 0.3s;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.mobile-nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.mobile-cta {
    margin-top: 24px;
    display: inline-flex;
    justify-content: center;
    background: var(--primary);
    color: var(--bg) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(20, 18, 189, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 18, 189, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(20, 18, 189, 0.15);
    top: -200px;
    right: -100px;
    animation: float1 15s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(20, 18, 189, 0.1);
    bottom: -100px;
    left: -200px;
    animation: float2 20s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 30px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -40px);
    }
}

.hero-container {
    max-width: 900px;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(20, 18, 189, 0.05);
}

.hero-tag i {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* =========================================
   Trusted By Marquee
   ========================================= */
.trusted-by {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 30s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.marquee-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.5;
    transition: var(--fast);
    cursor: default;
    white-space: nowrap;
}

.marquee-track span:hover {
    opacity: 1;
    color: var(--primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }
}

/* =========================================
   Sections General
   ========================================= */
.section {
    padding: 120px 0;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.grid {
    display: grid;
    gap: 32px;
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
    text-align: left;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--fast);
}

.service-icon i {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--bg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
}

/* =========================================
   About Section
   ========================================= */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.stat-box h3 {
    font-size: 3.5rem;
    margin-bottom: 8px;
}

.stat-box p {
    font-weight: 600;
    color: var(--text-light);
}

.mission-vision-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 64px 48px;
    color: var(--bg);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.mv-orb {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(234, 237, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.mission-vision-box h3 {
    color: var(--bg);
    font-size: 2rem;
    margin-bottom: 16px;
}

.mv-desc {
    font-size: 1.1rem;
    color: rgba(234, 237, 255, 0.8);
    margin-bottom: 40px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 32px;
}

.mv-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-card h4 {
    color: var(--bg);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.mv-card p {
    color: rgba(234, 237, 255, 0.8);
    font-size: 0.95rem;
}

/* =========================================
   Ecosystem
   ========================================= */
.ecosystem-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.eco-card {
    text-align: left;
}

.eco-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.eco-subtitle {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.eco-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.eco-list i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* =========================================
   Process Timeline
   ========================================= */
.dark-section {
    background-color: var(--primary);
    color: var(--bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    padding-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: calc(100% - 80px);
    height: 2px;
    background: rgba(234, 237, 255, 0.2);
}

.process-step {
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    top: -64px;
    margin: 0 auto;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
}

/* =========================================
   Video Section
   ========================================= */
.video-grid {
    grid-template-columns: 1fr 1fr;
}

.video-card {
    padding: 0;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   Industries
   ========================================= */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.industry-tag:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(20, 18, 189, 0.15);
}

/* =========================================
   Testimonials
   ========================================= */
.test-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.test-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.test-body {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 32px;
    flex-grow: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(234, 237, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-container h2 {
    color: var(--bg);
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-container p {
    color: rgba(234, 237, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 16px;
}

.cta-form input {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(234, 237, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(8px);
}

.cta-form input::placeholder {
    color: rgba(234, 237, 255, 0.6);
}

.cta-form input:focus {
    border-color: var(--bg);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-light);
    margin: 20px 0 32px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.highlight-text {
    color: var(--primary) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =========================================
   Floating Elements
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(20, 18, 189, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa i {
    width: 28px;
    height: 28px;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--bg-alt);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: var(--primary);
    color: var(--bg);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
        row-gap: 60px;
    }

    .process-timeline::before {
        display: none;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        top: 0;
        margin-bottom: 16px;
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-desc {
        margin: 20px auto 32px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

html,
body {
    overflow-x: hidden;
}



/* =========================================
   Premium Dropdown Menu
   ========================================= */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 300px;
    background-color: var(--bg-alt);
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 40px rgba(20, 18, 189, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(20, 18, 189, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.nav-links .dropdown-menu a {
    padding: 12px 24px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: left;
    transition: 0.2s ease;
    border-bottom: 1px solid rgba(20, 18, 189, 0.03);
}

.nav-links .dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-links .dropdown-menu a::after {
    display: none !important;
}

.nav-links .dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 28px;
}