:root {
    --bg: #050a14;
    --bg2: #0a1020;
    --text: #e2e8f0;
    --muted: #64748b;
    --blue: #6925eb;
    --purple: #7c3aed;
    --border: rgba(255, 255, 255, 0.07);
    --card: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.06);
    --glow-blue: rgba(37, 99, 235, 0.25);
    --glow-purple: rgba(124, 58, 237, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: var(--text);
    font-family: 'Inter', 'Roboto', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInPage 1s ease both;
}

/* subtle dot grid */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

@keyframes fadeInPage {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.5;
}

.glow-bg-1,
.glow-bg-2,
.glow-bg-3 {
    display: none;
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s cubic-bezier(.2, .8, .2, 1);
    visibility: hidden;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.load-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.load-reveal.load-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── NAVBAR ─── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    width: 94%;
    max-width: 1380px;
    margin: 14px auto;
    background: rgb(0 0 0 / 70%);
    border: 1px solid var(--border);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 14px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    width: fit-content;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 33px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.2px;
    text-transform: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
    letter-spacing: -0.1px;
}

.nav-links a:hover {
    color: #fff;
}

.cta-button {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border: none;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 13px;
    transition: all 0.3s ease !important;
    
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ─── SECTION TAG ─── */
.tag-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px
    color: var(--blue);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-align: center;
}

/* ─── HERO ─── */
.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 94%;
    max-width: 1380px;
    margin: 60px auto 120px auto;
    border-radius: 28px;
    padding: 90px 72px;
    position: relative;
    border: 1px solid var(--border);
    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(10px);
    overflow: visible;
    min-height: 680px;
    z-index: 1;
}

.hero-content {
    flex: 1;
    text-align: left;
    z-index: 5;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(0 0 0 / 10%);
    border: 1px solid rgb(89 33 206 / 30%);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(37, 99, 235, 0);
    }
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -3px;
    margin-bottom: 22px;
    color: #f1f5f9;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 40%, #a78bfa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 100% 50%
    }
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
 box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #f1f5f9;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
    display: inline;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

/* Hero 3D */
.hero-3d-wrapper {
    position: absolute;
    inset: 0;
    /* Kartın tamamını kaplar */
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

#hero-3d-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-3d-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ─── SECTION COMMON ─── */
.about-section,
.services-section,
.contact-section {
    padding: 110px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header .section-tag {
    margin: 0 auto 24px auto;
    display: block;
    text-align: center;
}

/* ─── SERVICES ─── */
.services-container {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    background: var(--card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f1f5f9;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── SHOWCASE ─── */
.showcase-section {
    position: relative;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-only {
    display: none;
}

.showcase-container {
    width: 100%;
}

.showcase-right {
    width: 100%;
}

.showcase-card-content {
    display: flex;
    gap: 56px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 56px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.showcase-card-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.04));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-card-content:hover {
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-4px);
}

.showcase-card-content:hover::before {
    opacity: 1;
}

.desktop-img-wrapper {
    flex: 0 0 380px;
    height: 380px;
}

.desktop-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.showcase-text {
    flex: 1;
}

.showcase-item {
    margin-bottom: 56px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
    opacity: 0.15;
    transform: translateX(24px);
}

.showcase-item.active {
    opacity: 1;
    transform: translateX(0);
}

.showcase-item h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #f1f5f9;
    letter-spacing: -2px;
}

.showcase-item p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}

.showcase-glass-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    pointer-events: none;
}

.showcase-image-wrapper {
    position: relative;
    width: 80%;
    height: 80%;
}

.showcase-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: all 0.8s cubic-bezier(.4, 0, .2, 1);
    transform: scale(0.85) translateY(30px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5)) grayscale(0.4);
}

.showcase-image-wrapper img.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7)) grayscale(0);
}

/* ─── PREMIUM LINK ─── */
.btn-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    margin-top: 28px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    width: fit-content;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.btn-premium-link:hover {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-color: transparent;
    transform: translateX(4px);
}

.btn-premium-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-premium-link:hover i {
    transform: translate(2px, -2px);
}

/* ─── CONTACT ─── */
.contact-form {
    background: rgba(10, 16, 32, 0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ─── LANG BTN ─── */
.lang-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 9px 18px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.lang-btn i {
    font-size: 13px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.lang-btn:hover i {
    color: #fff;
    transform: rotate(15deg);
}

/* ─── FOOTER ─── */
.footer {
    padding: 72px 20px 24px 20px;
    border-top: 1px solid var(--border);
    background: rgb(0 0 0 / 95%);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col .logo {
    margin-bottom: 16px;
    font-size: 20px;
}

.footer-col p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-col h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* ─── MARQUEE ─── */
.marquee-section {
    padding: 20px 0 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 32px;
}

.marquee-subtitle {
    text-align: center;
    font-size: 11px;
    border: 1px solid var(--border);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    margin-left: 50%;
    transform: translateX(-50%);
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 24px;
    background: var(--card);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    height: 110px;
    width: max-content;
    gap: 72px;
    padding-right: 72px;
    animation: scroll 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.2);
}

.marquee-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.marquee-item:hover img {
    transform: scale(1.12);
}

.marquee-item span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width:1250px) {

    .navbar,
    .hero,
    .marquee-section,
    .showcase-section {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width:1024px) {
    .navbar {
        background: rgba(5, 10, 20, 0.95);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .hero {
        flex-direction: column;
        padding: 60px 40px 80px;
        min-height: auto;
        text-align: center;
        overflow: hidden;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-3d-wrapper {
        position: absolute;
        inset: 0;
        z-index: 1;
        overflow: hidden;
        pointer-events: none;
    }

    .mobile-only {
        display: block;
    }

    .desktop-img-wrapper {
        display: none;
    }

    .showcase-container {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .showcase-card-content {
        display: block;
        background: transparent;
        border: none;
        padding: 0;
    }

    .showcase-card-content:hover {
        background: transparent;
        transform: none;
    }

    .showcase-left {
        position: sticky;
        top: 100px;
        width: 100%;
        max-width: 440px;
        height: 300px;
        z-index: 10;
        margin-bottom: 40px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--card);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
    }

    .showcase-section {
        padding: 60px 0;
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
        mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
    }

    .showcase-item {
        min-height: 80vh;
        margin-bottom: 0;
    }
}

@media (max-width:768px) {
    .navbar {
        margin: 10px 15px;
        padding: 14px 22px;
        border-radius: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -105%;
        height: 100vh;
        width: 100%;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: 0.4s cubic-bezier(.2, .8, .2, 1);
        z-index: 1000;
        display: flex;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a,
    .lang-btn {
        font-size: 22px;
        color: #fff;
    }

    .lang-btn {
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
    }

    .mobile-menu-active {
        overflow: hidden;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        margin: 30px 15px 60px;
        padding: 50px 24px 64px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-3d-wrapper {
        position: absolute;
        inset: 0;
        z-index: 1;
        overflow: hidden;
        pointer-events: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 26px;
    }

    .footer-container,
    .contact-container,
    .services-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-section,
    .services-section,
    .contact-section {
        padding: 60px 16px;
    }

    .showcase-left {
        height: 260px;
        top: 88px;
    }

    .showcase-item h2 {
        font-size: 28px;
    }

    .marquee-section {
        margin-left: 15px;
        margin-right: 15px;
        padding-bottom: 60px;
    }
}

@media (max-width:480px) {
    .navbar {
        margin: 10px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .hero-3d-wrapper {
        position: absolute;
        inset: 0;
        z-index: 1;
        overflow: hidden;
        pointer-events: none;
    }

    .showcase-section,
    .marquee-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-card {
        padding: 28px 18px;
        border-radius: 16px;
    }
}

@media (max-width:400px) {
    .logo span {
        display: none;
    }
}

@media (max-width:320px) {
    .hero-title {
        font-size: 26px;
    }

    .navbar .logo {
        font-size: 15px;
    }

    .logo img {
        height: 22px;
    }
}