:root {
    color-scheme: dark;
    --bg: #050310;
    --bg-alt: #0b0720;
    --text: #f4f3ff;
    --text-muted: #c9c6e2;
    --accent-1: #9d7bff;
    --accent-2: #ff7af7;
    --accent-3: #20ffe1;
    --glass: rgba(17, 14, 40, 0.65);
    --border-glow: rgba(255, 255, 255, 0.16);
    --shadow-pop: 0 30px 80px rgba(10, 2, 35, 0.5);
    font-size: clamp(15px, 1.3vw, 18px);
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 247, 0.12), transparent 58%),
        radial-gradient(circle at 80% 10%, rgba(32, 255, 225, 0.12), transparent 60%),
        radial-gradient(circle at 50% 75%, rgba(157, 123, 255, 0.09), transparent 70%),
        linear-gradient(180deg, rgba(5, 3, 16, 0.98) 0%, rgba(8, 6, 24, 0.95) 55%, rgba(7, 5, 20, 0.98) 100%);
    pointer-events: none;
}

body {
    overflow-x: hidden;
    scroll-snap-type: y proximity;
}

a {
    color: inherit;
    text-decoration: none;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAF5JREFUeNrskgENACAIBMG8/2m3KAkIFpoBC0PqP1sDk1WpIYSUklJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJR0wCzUAbgAD5YVXMAAAAASUVORK5CYII=");
    opacity: 0.08;
    mix-blend-mode: screen;
    z-index: 10;
}

.gradient-field {
    position: absolute;
    inset: -20vh -20vw;
    background: radial-gradient(circle at top right, rgba(157, 123, 255, 0.25), transparent 50%),
                radial-gradient(circle at bottom left, rgba(32, 255, 225, 0.2), transparent 55%);
    filter: blur(60px);
    z-index: 0;
    overflow: hidden;
}

.spark-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9;
    overflow: hidden;
}

.spark-burst {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 16px rgba(255, 122, 247, 0.8));
}

.spark-burst::before {
    content: "";
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 70%);
    transform: translate(-50%, -50%);
    animation: sparkCore 0.45s ease-out forwards;
}

.spark-burst__particle {
    position: absolute;
    inset: 0;
    width: 0.35rem;
    height: 1.6rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 122, 247, 0.2));
    transform: rotate(var(--angle)) translateY(0);
    transform-origin: center top;
    animation: sparkFly 0.7s ease-out forwards;
    opacity: 0;
}

.spark-burst__particle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 80%;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(32, 255, 225, 0.9);
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

@keyframes sparkCore {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.3); }
    60% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}

@keyframes sparkFly {
    0% { opacity: 0.9; transform: rotate(var(--angle)) translateY(0) scaleY(0.6); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: rotate(var(--angle)) translateY(calc(var(--distance) * -1)) scaleY(1.1); }
}

.service-spark-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 5;
}

.service-spark {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    box-shadow: 0 12px 35px rgba(9, 3, 25, 0.45);
    transform: translate3d(0, 0, 0);
    opacity: 0;
    animation: service-flight var(--duration, 1.4s) cubic-bezier(0.2, 0.6, 0.3, 1) forwards;
}

.service-spark::after {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
    box-shadow: 0 0 14px rgba(255, 122, 247, 0.7);
    flex-shrink: 0;
}

@keyframes service-flight {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0.7) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translate3d(var(--drift-x, 0px), calc(var(--lift, -60px)), 0) scale(1);
    }
    60% {
        opacity: 1;
        transform: translate3d(calc(var(--drift-x, 0px) * 1.2), calc(var(--fall, 180px)), 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate3d(calc(var(--drift-x, 0px) * 1.25), calc(var(--fall, 220px) + 35px), 0) scale(0.92);
    }
}

.orb {
    position: absolute;
    width: clamp(18rem, 25vw, 30rem);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(0);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.25;
    animation: drift 18s linear infinite;
}

.orb-1 {
    top: 10%;
    left: 12%;
    background: radial-gradient(circle at 25% 30%, rgba(255, 122, 247, 0.6), transparent 65%);
    animation-delay: -5s;
}

.orb-2 {
    top: 55%;
    right: 10%;
    background: radial-gradient(circle at 50% 40%, rgba(32, 255, 225, 0.55), transparent 60%);
    animation-duration: 22s;
}

.orb-3 {
    bottom: 5%;
    left: 30%;
    background: radial-gradient(circle at 60% 50%, rgba(157, 123, 255, 0.65), transparent 70%);
    animation-duration: 26s;
    animation-delay: -9s;
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25% { transform: translate3d(4vw, -2vh, 0) scale(1.06); }
    50% { transform: translate3d(-3vw, 4vh, 0) scale(0.95); }
    75% { transform: translate3d(-2vw, -3vh, 0) scale(1.08); }
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: clamp(2.8rem, 7vw, 5rem) clamp(1.6rem, 8vw, 6rem) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    z-index: 2;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    background: rgba(12, 10, 29, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: var(--shadow-pop);
}

.logo .badge {
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    color: #050310;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: clamp(1.5rem, 3vw, 3.5rem);
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.4rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    border: none;
    padding: 0.65rem 1.45rem;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    color: var(--bg);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 35px rgba(157, 123, 255, 0.35);
}

.nav-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(157, 123, 255, 0.45);
}

.social-bar {
    display: inline-flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
    padding-left: 0;
    margin-left: 0;
}

.social-bar .social-label {
    display: inline-block;
    padding: 0.4rem 0.8rem 0.4rem 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.4rem;
}

.social-bar a {
    position: relative;
    padding: 0.35rem 0;
    color: rgba(255, 255, 255, 0.75);
}

.social-bar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.social-bar a:hover::after,
.social-bar a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-bar a:hover {
    color: var(--text);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(2rem, 3vw, 3.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    padding-right: 0;
    width: 100%;
}

.hero-copy {
    grid-column: 1 / span 6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: clamp(32rem, 38vw, 38rem);
    margin-left: 0;
    justify-self: start;
    align-items: flex-start;
}

.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.05;
    margin: 0;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    white-space: normal;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.gradient-text.is-swapping {
    opacity: 0;
    filter: blur(8px);
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta.primary {
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    color: var(--bg);
    box-shadow: 0 18px 40px rgba(157, 123, 255, 0.4);
}

.cta.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(157, 123, 255, 0.52);
}

.cta.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta.secondary:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05rem;
}

.pulse-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent-3);
    box-shadow: 0 0 18px rgba(32, 255, 225, 0.8);
    animation: pulse 2.3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.6); opacity: 0.4; }
}

.hero-showcase {
    grid-column: 7 / span 5;
    position: relative;
    min-height: clamp(22rem, 30vw, 30rem);
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 0.6s ease;
}

.floating-card {
    position: absolute;
    background: var(--glass);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 24px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-pop);
    max-width: 21rem;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
    transform: translate3d(calc(var(--parallax-x, 0px) * 0.35), calc(var(--parallax-y, 0px) * 0.35), 0);
}

.floating-card--main {
    transform: translate3d(calc(var(--parallax-x, 0px) * 0.35), calc(-5% + var(--parallax-y, 0px) * 0.35), 0);
}

.floating-card__label {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-3);
}

.floating-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0 0 0.85rem 0;
}

.floating-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.floating-card--alt {
    font-size: 0.9rem;
    max-width: 15rem;
}

.floating-card--top {
    top: -8%;
    right: 8%;
}

.floating-card--bottom {
    bottom: -4%;
    left: 5%;
}

.hero-showcase:hover .floating-card--main {
    transform: translate3d(calc(var(--parallax-x, 0px) * 0.45), calc(-10% + var(--parallax-y, 0px) * 0.45), 0) scale(1.02);
    box-shadow: 0 35px 90px rgba(45, 0, 255, 0.45);
}

.hero-showcase:hover .floating-card--top {
    transform: translate3d(calc(10% + var(--parallax-x, 0px) * 0.5), calc(-15% + var(--parallax-y, 0px) * 0.5), 0) scale(1.05);
    opacity: 1;
}

.hero-showcase:hover .floating-card--bottom {
    transform: translate3d(calc(-8% + var(--parallax-x, 0px) * 0.45), calc(10% + var(--parallax-y, 0px) * 0.45), 0) scale(1.04);
    opacity: 1;
}

.glow-bridge {
    position: absolute;
    width: 70%;
    height: 40%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 123, 255, 0.55), transparent 60%);
    filter: blur(40px);
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.hero-showcase:hover .glow-bridge {
    opacity: 0.85;
}

.scroll-indicator {
    position: absolute;
    right: clamp(1.2rem, 3vw, 2.8rem);
    bottom: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    z-index: 2;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.6);
}

.scroll-dot {
    width: 0.45rem;
    height: 3.5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 122, 247, 0.7), rgba(32, 255, 225, 0.7));
    position: relative;
    overflow: hidden;
}

.scroll-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
    width: 0.45rem;
    height: 25%;
    border-radius: inherit;
    background: #ffffffcc;
    animation: scroll 2.2s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 0; }
    20% { opacity: 1; }
    60% { transform: translate(-50%, 170%); opacity: 0; }
    100% { opacity: 0; }
}

.section {
    position: relative;
    min-height: 100vh;
    padding: clamp(2.8rem, 7vw, 5rem) clamp(1.6rem, 8vw, 6rem);
    display: flex;
    align-items: center;
    scroll-snap-align: start;
}

main {
    display: flex;
    flex-direction: column;
}

.section-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 3.8rem);
}

.section-header {
    max-width: 48rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(2.4rem, 5vw, 3.9rem);
    line-height: 1.05;
    margin: 0;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-pill::after {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
    box-shadow: 0 0 18px rgba(255, 122, 247, 0.7);
}

.section-vizyon {
    backdrop-filter: blur(0px);
}

.section-vizyon::before {
    content: "";
    position: absolute;
    inset: 20% 8% 15% auto;
    width: clamp(200px, 40vw, 420px);
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
    opacity: 0.45;
    filter: blur(0.4px);
    transform: rotate(-4deg);
    pointer-events: none;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
}

.vision-manifest {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.vision-word {
    display: inline-block;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(157, 123, 255, 0.5));
    -webkit-background-clip: text;
    color: transparent;
}

.vision-copy {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.vision-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.vision-highlights li {
    position: relative;
    padding-left: 2.5rem;
}

.vision-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 12px rgba(157, 123, 255, 0.5);
}

.vision-highlights span {
    color: var(--text);
}

.section-servisler .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.4rem);
}

.service-card {
    background: rgba(15, 10, 35, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 2.1rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(8, 3, 25, 0.45);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 12% -20% -30% 35%;
    background: radial-gradient(circle, rgba(255, 122, 247, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.16);
}

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

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin: 0;
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-tag {
    align-self: flex-start;
    font-size: 0.72rem;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-projeler {
    align-items: stretch;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 55%, #f1ecff 100%);
    color: #1d1533;
}

.section-projeler::before {
    content: "";
    position: absolute;
    inset: 8% 12% auto;
    height: 60%;
    background:
        radial-gradient(circle at 20% 20%, rgba(140, 104, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 35%, rgba(209, 184, 255, 0.16), transparent 65%),
        radial-gradient(circle at 40% 80%, rgba(153, 115, 255, 0.12), transparent 60%);
    filter: blur(0);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.section-projeler .section-inner {
    position: relative;
    z-index: 1;
    color: #3c345d;
}

.section-projeler .section-header h2 {
    color: #1b1233;
}

.section-projeler .section-pill {
    background: rgba(118, 78, 255, 0.12);
    border: 1px solid rgba(118, 78, 255, 0.3);
    color: #5a39d3;
}

.section-projeler .section-pill::after {
    background: linear-gradient(120deg, #7f5bff, #b084ff);
    box-shadow: 0 0 18px rgba(126, 93, 255, 0.5);
}

.projects-marquee {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.project-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: clamp(1.8rem, 3vw, 2.2rem);
    border: 1px solid rgba(126, 93, 255, 0.18);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    position: relative;
    box-shadow: 0 30px 65px rgba(82, 54, 170, 0.17);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: auto 18% -18% 10%;
    height: 48%;
    background: radial-gradient(circle, rgba(137, 98, 255, 0.24), transparent 72%);
    opacity: 0.75;
    pointer-events: none;
}

.project-label {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7f5bff;
}

.project-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0;
    color: #2b1f4d;
}

.project-card p {
    margin: 0;
    color: #514270;
    line-height: 1.7;
}

.projects-footer {
    margin-top: clamp(2.2rem, 6vw, 3.5rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    color: #3e3364;
}

.cta.tertiary {
    border: 1px solid rgba(126, 93, 255, 0.4);
    padding: 0.8rem 1.4rem;
    border-radius: 18px;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #5a39d3;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.cta.tertiary:hover {
    background: rgba(126, 93, 255, 0.12);
    transform: translateY(-4px);
    color: #3e2ab2;
}

.section-iletisim {
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(2rem, 6vw, 4rem);
}

.contact-lead {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-lead h2 {
    color: var(--text);
    margin: 0;
    line-height: 1.1;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.contact-actions {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-actions .cta {
    width: fit-content;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

body.modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 3, 16, 0.7);
    backdrop-filter: blur(12px);
}

.contact-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(32rem, 92vw);
    margin: 1rem;
    padding: 2rem 2.4rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(17, 14, 40, 0.95), rgba(9, 6, 26, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 90px rgba(10, 2, 35, 0.55);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-height: min(80vh, 44rem);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 129, 255, 0.4) transparent;
}

.contact-modal__header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-modal__header p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-modal__close {
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 3, 16, 0.55);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-modal__close:hover {
    transform: scale(1.05);
    border-color: var(--accent-3);
}

.contact-modal__form {
    display: grid;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 10, 28, 0.75);
    color: var(--text);
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-3);
    box-shadow: 0 0 0 3px rgba(32, 255, 225, 0.18);
}

.contact-submit {
    min-height: 3rem;
}

.form-status {
    min-height: 1.4rem;
    margin: 0.4rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

.form-status.is-loading {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.form-status.is-success {
    color: var(--accent-3);
    opacity: 1;
}

.form-status.is-error {
    color: #ff7a89;
    opacity: 1;
}

.site-footer {
    padding: 2.4rem 1.6rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(5, 3, 16, 0.9), rgba(7, 5, 20, 0.96));
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 1080px) {
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1rem 1.8rem;
    }

    .social-bar {
        flex-wrap: wrap;
        justify-content: center;
        letter-spacing: 0.25rem;
    }

    .hero-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .hero-copy,
    .hero-showcase {
        grid-column: span 1;
    }

    .hero-showcase {
        min-height: clamp(20rem, 50vw, 26rem);
        margin-top: 2.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .vision-grid,
    .contact-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        text-align: center;
    }

    .vision-manifest,
    .vision-copy,
    .contact-lead,
    .contact-actions {
        grid-column: span 1;
        align-items: center;
    }

    .vision-manifest {
        align-items: center;
    }

    .section-servisler .services-grid,
    .projects-marquee {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-footer {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 720px) {
    :root {
        font-size: 16px;
    }

    .hero {
        padding: 1.6rem 1.4rem 3rem;
    }

    .section {
        padding: 2.4rem 1.4rem 3.2rem;
    }

    h1 {
        font-size: clamp(2.3rem, 10vw, 3.6rem);
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-card {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        width: 100%;
        max-width: none;
        margin-bottom: 1.2rem;
    }

    .hero-showcase {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .glow-bridge {
        display: none;
    }

    .vision-grid,
    .section-servisler .services-grid,
    .projects-marquee {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-servisler .services-grid {
        gap: 1.5rem;
    }

    .projects-marquee {
        gap: 1.5rem;
    }

    .contact-actions .cta {
        width: 100%;
        text-align: center;
    }

    .contact-modal {
        padding: 1.2rem;
    }

    .contact-modal__dialog {
        padding: 1.6rem;
    }

    .contact-modal__close {
        width: 2.2rem;
        height: 2.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
.hero-showcase.is-active {
    transition: none;
}
