/* ===================================================
   WINGCREA — Main Stylesheet
   Award-Winning Dark Aesthetic
   =================================================== */

/* CSS Variables */
:root {
    --bg: #080808;
    --bg-2: #0f0f0f;
    --bg-3: #161616;
    --surface: #1a1a1a;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);

    --text: #f0f0f0;
    --text-2: #888;
    --text-3: #555;

    --accent: #FF3D2E;
    --accent-2: #0066FF;
    --accent-3: #FF8C00;

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --nav-h: 90px;
    --radius: 12px;
    --radius-lg: 20px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);

    --transition: 0.3s var(--ease);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: none;
    border: none;
    background: none;
    font: inherit;
}

input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
    mix-blend-mode: normal;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

body.cursor-hover .cursor {
    transform: translate(-50%, -50%) scale(2);
}

body.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.1);
}

@media (pointer: coarse) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
.section {
    padding: 100px 0;
}

/* ===================================================
   NAVIGATION
   =================================================== */
/* ===================================================
   NAVIGATION - GENİŞLETİLMİŞ (90px yükseklik)
   =================================================== */

:root {
    --nav-h: 90px;
    /* Eskiden 72px idi */
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    height: 75px;
    /* Scroll'da biraz küçülür */
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ===================================================
   PREMIUM LARGE LOGO - ÇOK BÜYÜK (100px+)
   =================================================== */

.nav-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 0;
}

/* Magnetic Wrap - BÜYÜK ALAN */
.logo-magnetic-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.2s ease-out;
    cursor: pointer;
}

/* ========== LOGO ICON - BÜYÜK ========== */
.logo-icon-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-premium {
    max-height: 80px;
    max-width: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 61, 46, 0.5));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover .logo-img-premium {
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 61, 46, 0.9));
    transform: scale(1.05);
}

/* ========== TEXT LOGO - BÜYÜK YAZI ========== */
.logo-text-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-text-main {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.logo-text-accent {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FF3D2E, #FF8A5C, #FF3D2E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    transition: all 0.3s;
    animation: gradientShift 3s ease infinite;
}

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

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

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

/* Alt çizgi efekti */
.logo-text-accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3D2E, #FF8A5C);
    transition: width 0.4s ease;
    border-radius: 4px;
}

.nav-logo:hover .logo-text-accent::after {
    width: 100%;
}

.nav-logo:hover .logo-text-main {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.nav-logo:hover .logo-text-accent {
    transform: translateY(-2px);
}

/* Glow Ring - BÜYÜK */
.logo-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 61, 46, 0.4) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.logo-glow-ring-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 120px);
    height: calc(100% + 120px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 61, 46, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.nav-logo:hover .logo-glow-ring {
    opacity: 1;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.nav-logo:hover .logo-glow-ring-large {
    opacity: 1;
    animation: pulseGlowLarge 2s ease-in-out infinite;
}

@keyframes pulseGlow {

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

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulseGlowLarge {

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

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

/* Corner Glow */
.logo-corner-glow {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #FF3D2E;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 15px #FF3D2E;
}

.nav-logo:hover .logo-corner-glow {
    opacity: 1;
    animation: cornerPulse 1s ease-in-out infinite;
}

@keyframes cornerPulse {

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

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Pulse Animation */
.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 61, 46, 0.6), transparent);
    opacity: 0;
    animation: logoPulseSoft 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes logoPulseSoft {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }

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

/* Shimmer Overlay */
.logo-shimmer-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    border-radius: 20px;
}

.nav-logo:hover .logo-shimmer-overlay {
    left: 150%;
}

/* Particle Canvas */
.logo-particle-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 130px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-logo:hover .logo-particle-canvas {
    opacity: 1;
}

/* SVG Icon */
.logo-icon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 61, 46, 0.5));
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon-svg {
    filter: drop-shadow(0 0 35px rgba(255, 61, 46, 0.9));
    transform: scale(1.03);
}

/* ===================================================
   RESPONSIVE - LOGO BOYUTLARI
   =================================================== */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --nav-h: 80px;
    }

    .logo-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .logo-img-premium {
        max-height: 60px;
        max-width: 60px;
    }

    .logo-text-main,
    .logo-text-accent {
        font-size: 2.3rem;
    }

    .logo-magnetic-wrap {
        gap: 16px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    :root {
        --nav-h: 70px;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .logo-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .logo-img-premium {
        max-height: 45px;
        max-width: 45px;
    }

    .logo-text-main,
    .logo-text-accent {
        font-size: 1.6rem;
    }

    .logo-magnetic-wrap {
        gap: 12px;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .logo-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .logo-img-premium {
        max-height: 38px;
        max-width: 38px;
    }

    .logo-text-main,
    .logo-text-accent {
        font-size: 1.3rem;
    }

    .logo-magnetic-wrap {
        gap: 8px;
    }
}

/* Scroll durumunda logo küçülmesi */
.nav.scrolled .logo-icon-wrapper {
    width: 55px;
    height: 55px;
}

.nav.scrolled .logo-img-premium {
    max-height: 50px;
    max-width: 50px;
}

.nav.scrolled .logo-text-main,
.nav.scrolled .logo-text-accent {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .nav.scrolled .logo-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .nav.scrolled .logo-img-premium {
        max-height: 38px;
        max-width: 38px;
    }

    .nav.scrolled .logo-text-main,
    .nav.scrolled .logo-text-accent {
        font-size: 1.3rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-2);
    padding: 8px 16px;
    border-radius: 100px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bg);
    background: var(--text);
    padding: 10px 20px;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #ccc;
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
    margin-left: auto;
}

.nav-burger span {
    height: 1px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    display: block;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

/* Wait - burger only has 2 spans in template, adjust */
.nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-burger.open span:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: none;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: calc(var(--nav-h) + 40px) 32px 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--text-3);
    line-height: 1.1;
    transition: color 0.2s;
    letter-spacing: -0.02em;
}

.mobile-nav-link:hover {
    color: var(--text);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-footer>a {
    font-size: 0.875rem;
    color: var(--text-2);
}

.mobile-social {
    display: flex;
    gap: 16px;
}

.mobile-social a {
    font-size: 0.8125rem;
    color: var(--text-3);
    transition: color 0.2s;
}

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

/* ===================================================
   HERO
   =================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: -200px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 61, 46, 0.08);
    top: -100px;
    right: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 255, 0.06);
    bottom: 0;
    left: 10%;
    animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {

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

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-2);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    animation: fadeUp 0.8s var(--ease) both;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    display: block;
    animation: fadeUp 0.9s var(--ease) var(--delay, 0.1s) both;
}

.hero-title-line:nth-child(2) {
    margin-left: 80px;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-2);
    max-width: 500px;
    line-height: 1.7;
    animation: fadeUp 0.9s var(--ease) 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    animation: fadeUp 0.9s var(--ease) 0.5s both;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-3), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5) translateY(10px);
        opacity: 0.5;
    }
}

.hero-awards {
    position: absolute;
    right: 24px;
    bottom: 80px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    animation: fadeLeft 0.9s var(--ease) both;
    min-width: 200px;
}

.award-badge--1 {
    animation-delay: 0.5s;
}

.award-badge--2 {
    animation-delay: 0.6s;
}

.award-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.award-badge div {
    display: flex;
    flex-direction: column;
}

.award-badge strong {
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1.2;
}

.award-badge span {
    font-size: 0.75rem;
    color: var(--text-2);
}

/* ===================================================
   BUTTONS
   =================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.btn--primary {
    background: var(--text);
    color: var(--bg);
}

.btn--primary:hover {
    background: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.btn--white {
    background: #fff;
    color: #000;
}

.btn--white:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
}

/* ===================================================
   STATS
   =================================================== */

.stats {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-right: 1px solid var(--border);
    animation: fadeUp 0.6s var(--ease) calc(var(--i) * 0.1s) both;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-2);
    text-align: center;
}

/* ===================================================
   SECTION HEADERS
   =================================================== */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 24px;
}

.section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    color: var(--text-2);
}

.section-link {
    font-size: 0.875rem;
    color: var(--text-2);
    white-space: nowrap;
    transition: color var(--transition);
    flex-shrink: 0;
}

.section-link:hover {
    color: var(--text);
}

/* ===================================================
   SERVICES LIST
   =================================================== */

.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 48px 48px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), padding var(--transition);
    animation: fadeUp 0.6s var(--ease) var(--delay) both;
    cursor: none;
}

.service-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 -16px;
}

.service-row:hover .service-row-icon {
    color: var(--color);
}

.service-row-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 600;
}

.service-row-icon {
    font-size: 1.25rem;
    color: var(--text-3);
    transition: color var(--transition);
    text-align: center;
}

.service-row-info h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: var(--text);
}

.service-row-info p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.5;
}

.service-row-arrow {
    color: var(--text-3);
    transition: color var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.service-row:hover .service-row-arrow {
    color: var(--text);
    transform: translateX(4px);
}

/* ===================================================
   FEATURED PROJECTS
   =================================================== */

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    overflow: hidden;
}

.project-card--featured {
    position: relative;
    aspect-ratio: 9/12;
    background: var(--color);
    overflow: hidden;
    cursor: none;
}

.project-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color) 0%, color-mix(in srgb, var(--accent) 30%, var(--color)) 100%);
    transition: transform 0.8s var(--ease);
}

.project-card--featured:hover .project-card-bg {
    transform: scale(1.03);
}

.project-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.project-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    letter-spacing: 0.05em;
}

.project-tag--sm {
    font-size: 0.625rem;
    padding: 3px 8px;
}

.project-year {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.project-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.project-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    width: fit-content;
    transition: background var(--transition), border-color var(--transition);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.project-card-num {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: 0;
    letter-spacing: -0.05em;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
}

.about-shape--1 {
    width: 80%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 6s ease-in-out infinite;
}

.about-shape--2 {
    width: 60%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 61, 46, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 8s ease-in-out infinite reverse;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    25% {
        transform: translate(-48%, -52%) rotate(5deg);
    }

    75% {
        transform: translate(-52%, -48%) rotate(-5deg);
    }
}

.about-badge-float {
    position: absolute;
    bottom: 10%;
    right: -20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-ring {
    width: 56px;
    height: 56px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
}

.about-badge-float span:last-child {
    font-size: 0.8125rem;
    color: var(--text-2);
    line-height: 1.4;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-2);
    line-height: 1.75;
}

/* ===================================================
   MARQUEE
   =================================================== */

.marquee-section {
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-2);
    padding: 0 32px;
    white-space: nowrap;
}

.marquee-sep {
    color: var(--accent);
    font-size: 0.75rem;
    padding: 0 8px;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

/* ===================================================
   PAGE HERO
   =================================================== */

.page-hero {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 80px;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    max-width: 720px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 20px;
    animation: fadeUp 0.8s var(--ease) both;
}

.page-title em {
    font-style: italic;
    color: var(--text-3);
}

.page-subtitle {
    font-size: 1.0625rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 540px;
    animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.page-hero-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.page-hero-circle {
    width: 400px;
    height: 400px;
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
}

.page-hero-circle::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

/* ===================================================
   SERVICES DETAILED
   =================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.service-card {
    background: var(--bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background var(--transition);
    animation: fadeUp 0.6s var(--ease) calc(var(--i) * 0.07s) both;
}

.service-card:hover {
    background: var(--bg-2);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
}

.service-card:hover .service-icon-wrap {
    border-color: var(--color);
    background: color-mix(in srgb, var(--color) 10%, transparent);
}

.service-icon {
    font-size: 1.125rem;
    color: var(--color, var(--text-2));
}

.service-num {
    font-size: 0.75rem;
    color: var(--text-3);
    font-family: var(--font-display);
    font-weight: 600;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.65;
    flex: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-2);
}

.feature-dot {
    font-size: 0.5rem;
    color: var(--color, var(--accent));
    flex-shrink: 0;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-3);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    transition: color var(--transition);
}

.service-card:hover .service-cta {
    color: var(--text);
}

/* ===================================================
   PROCESS
   =================================================== */

.process-steps {
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border));
}

.process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-2);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.process-step:hover .step-num {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 61, 46, 0.05);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ===================================================
   PROJECTS GRID
   =================================================== */

.projects-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
}

.filter-btn {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: none;
}

.filter-btn:hover {
    color: var(--text);
    border-color: var(--border-hover);
}

.filter-btn.active {
    color: var(--bg);
    background: var(--text);
    border-color: var(--text);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.project-item {
    background: var(--bg);
    overflow: hidden;
    cursor: none;
}

.project-item.hidden {
    display: none;
}

.project-item-inner {
    display: flex;
    flex-direction: column;
}

.project-item-visual {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color), color-mix(in srgb, var(--accent) 20%, var(--color)));
    position: relative;
    overflow: hidden;
}

.project-item-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, color-mix(in srgb, white 8%, transparent), transparent 60%),
        radial-gradient(circle at 70% 70%, var(--accent), transparent 60%);
    opacity: 0.5;
    transition: opacity 0.4s;
}

.project-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-item:hover .project-item-overlay {
    opacity: 1;
}

.project-view-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0.8);
    transition: transform 0.3s var(--ease);
}

.project-item:hover .project-view-btn {
    transform: scale(1);
}

.project-item-info {
    padding: 24px;
}

.project-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.project-item-info h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.project-item-info p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ===================================================
   CONTACT
   =================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    flex-shrink: 0;
}

.contact-info-item .info-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 0.9375rem;
    color: var(--text-2);
    transition: color var(--transition);
}

.contact-info-item a:hover {
    color: var(--text);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-2);
    transition: color var(--transition);
}

.contact-social-link:hover {
    color: var(--text);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--text);
    font-size: 0.9375rem;
    transition: border-color var(--transition), background var(--transition);
    resize: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--bg-3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-3);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-error {
    background: rgba(255, 61, 46, 0.1);
    border: 1px solid rgba(255, 61, 46, 0.3);
    color: #ff8a7a;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #00c896;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.form-success p {
    color: var(--text-2);
}

/* ===================================================
   INLINE CTA
   =================================================== */

.inline-cta-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 61, 46, 0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.inline-cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    position: relative;
}

.inline-cta-box p {
    color: var(--text-2);
    font-size: 1.0625rem;
    max-width: 400px;
    position: relative;
}

/* ===================================================
   FOOTER
   =================================================== */

.footer {
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-cta-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1.0;
    max-width: 700px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: 100px;
    transition: all var(--transition);
}

.footer-cta-btn:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--text-3);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-3);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy p {
    font-size: 0.8125rem;
    color: var(--text-3);
}

/* ===================================================
   ERROR PAGE
   =================================================== */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    color: var(--text-3);
    line-height: 1;
}

.error-content h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.error-content p {
    color: var(--text-2);
    font-size: 1rem;
}

/* ===================================================
   ANIMATIONS
   =================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
    .projects-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
    }

    .section {
        padding: 60px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero-content {
        padding: 60px 24px 80px;
    }

    .hero-awards {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-title-line:nth-child(2) {
        margin-left: 0;
    }

    .projects-showcase {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .inline-cta-box {
        padding: 40px 24px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-copy {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row {
        grid-template-columns: 40px 1fr auto;
    }

    .service-row-num {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 16px 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-step {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .process-steps::before {
        left: 22px;
    }
}

/* HERO - AWARD WINNING SECTION */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080808;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(8, 8, 8, 0.2) 0%, #080808 90%);
    z-index: 1;
}

.hero-glow-orb {
    position: absolute;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(255, 61, 46, 0.15) 0%, rgba(255, 61, 46, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
    animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {

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

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text);
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-title-line {
    display: block;
    animation: fadeUp 0.9s var(--ease) var(--delay, 0.1s) both;
}

/* 3D Tilt Effect for Title */
.hero-title.tilt-effect {
    transform: rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
}

/* Responsive */
@media (max-width: 768px) {
    .hero-glow-orb {
        display: none;
    }

    .hero-video-bg video {
        opacity: 0.2;
    }
}

/* Project Card Video */
.project-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.project-card--featured {
    position: relative;
    overflow: hidden;
}

.project-card--featured .project-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease);
}

.project-card--featured:hover .project-card-bg {
    transform: scale(1.05);
}

.project-card--featured:hover .project-card-video {
    transform: scale(1.05);
}

/* ===================================================
   HERO SLIDER - CINEMATIC DYNAMIC SLIDER
   =================================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #080808;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Video & Image Background */
.hero-video-bg,
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-bg {
    filter: brightness(0.45) contrast(1.1);
    transform: scale(1.02);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-video-bg {
    transform: scale(1);
}

.hero-image-bg {
    background-size: cover;
    background-position: center;
}

/* Overlay & Orbs */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 40%,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(5, 5, 5, 0.85) 70%,
            #050505 100%);
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 12s infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #FF3D2E;
    top: 10%;
    left: -10%;
    animation-duration: 18s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #0066FF;
    bottom: 0;
    right: -5%;
    animation-duration: 14s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #FF8C00;
    top: 50%;
    left: 40%;
    animation-duration: 20s;
    opacity: 0.2;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, -60px) scale(1.2);
    }
}

/* Hero Content */
.hero-slide .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 48px 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 24px;
    margin-bottom: 32px;
    width: fit-content;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #FF3D2E;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* Hero Title */
.hero-slide .hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    color: white;
}

/* Hero Description */
.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin-bottom: 48px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF3D2E;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e63526;
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -10px rgba(255, 61, 46, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #FF3D2E;
    background: rgba(255, 61, 46, 0.1);
    transform: translateY(-2px);
}

/* Slider Navigation Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 20;
}

.slider-dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.6);
}

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #FF3D2E;
    transition: width linear;
}

.slider-dot.active .dot-progress {
    width: 100%;
}

/* Prev/Next Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    color: white;
}

.slider-nav-btn:hover {
    background: #FF3D2E;
    border-color: #FF3D2E;
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    /* Eskiden 40px idi */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 50px;
    }
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: transform 0.2s ease;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 600px;
    }

    .hero-slide .hero-content {
        padding: 120px 24px 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 16px;
    }

    .next-btn {
        right: 16px;
    }

    .hero-slider-nav {
        gap: 12px;
    }

    .slider-dot {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hero-slide .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ===================================================
   GLOBAL PARTNERS SECTION - REAL BRAND LOGOS
   =================================================== */

.partners-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 40px 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #FF3D2E;
    margin-bottom: 16px;
    background: rgba(255, 61, 46, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
}

.partners-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.partners-title .gradient-text {
    background: linear-gradient(135deg, #FF3D2E, #FF8A5C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 61, 46, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 61, 46, 0.3);
    background: rgba(255, 61, 46, 0.03);
}

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

.partner-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.02);
}

.partner-info {
    flex: 1;
}

.partner-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.partner-info span {
    font-size: 0.7rem;
    color: var(--text-2);
    letter-spacing: 0.05em;
}

.status-badge {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 61, 46, 0.12);
    color: #FF8A5C;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.partners-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-footer p {
    color: var(--text-2);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s;
}

.partner-cta:hover {
    border-color: #FF3D2E;
    background: rgba(255, 61, 46, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
        margin: 20px 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-card {
        padding: 16px 20px;
    }

    .partner-logo {
        width: 70px;
    }

    .partner-logo-img {
        max-height: 32px;
    }

    .status-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .partner-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .partner-info {
        text-align: center;
    }

    .partner-logo {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   AWARDS COMPACT - PREMIUM MINIMAL DESIGN
   Hero slider sağ alt köşe - az yer kaplar
   =================================================== */

.awards-compact {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 25;
}

/* Trigger Button - Kupa ikonu */
.awards-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 61, 46, 0.15), rgba(255, 61, 46, 0.05));
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 61, 46, 0.4);
    border-radius: 60px;
    padding: 10px 24px 10px 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    animation: awardGlowPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 61, 46, 0.2);
}

/* Yanıp sönen glow efekti */
@keyframes awardGlowPulse {

    0%,
    100% {
        border-color: rgba(255, 61, 46, 0.4);
        box-shadow: 0 0 15px rgba(255, 61, 46, 0.2);
        background: linear-gradient(135deg, rgba(255, 61, 46, 0.12), rgba(255, 61, 46, 0.03));
    }

    50% {
        border-color: rgba(255, 61, 46, 0.9);
        box-shadow: 0 0 35px rgba(255, 61, 46, 0.6);
        background: linear-gradient(135deg, rgba(255, 61, 46, 0.25), rgba(255, 61, 46, 0.08));
    }
}

/* İç ışıma efekti */
.awards-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, #FF3D2E, #FF8A5C);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.awards-trigger:hover::before {
    opacity: 1;
}

.awards-trigger:hover {
    transform: translateY(-3px) scale(1.02);
    animation: none;
    border-color: rgba(255, 61, 46, 0.8);
    box-shadow: 0 0 40px rgba(255, 61, 46, 0.5);
}

/* Kupa ikonu */
.awards-trophy {
    position: relative;
    display: flex;
    align-items: center;
    color: #FFD700;
}

.awards-trophy svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 5px rgba(255, 61, 46, 0.5));
}

/* Sayı balonu */
.awards-count-bubble {
    position: absolute;
    top: -8px;
    right: -12px;
    background: linear-gradient(135deg, #FF3D2E, #FF8A5C);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 10px rgba(255, 61, 46, 0.8);
    animation: bubblePulse 1.5s ease-in-out infinite;
}

@keyframes bubblePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 61, 46, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(255, 61, 46, 0.9);
    }
}

.awards-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Panel - Hover'da açılan ödül listesi */
.awards-panel {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 12px 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.awards-compact:hover .awards-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Award Items */
.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #FF3D2E;
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.award-item:hover {
    background: rgba(255, 61, 46, 0.08);
    transform: translateX(-4px);
}

.award-item:hover::before {
    transform: scaleY(1);
}

.award-icon-mini {
    font-size: 1.4rem;
    width: 32px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.award-content {
    flex: 1;
}

.award-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.award-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.award-win-count {
    background: rgba(255, 61, 46, 0.2);
    padding: 2px 6px;
    border-radius: 20px;
    color: #FF8A5C;
    font-weight: 600;
    font-size: 0.6rem;
}

.award-year-mini {
    font-size: 0.65rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

/* Award Panel Scroll (çok fazla ödül varsa) */
.awards-panel {
    max-height: 320px;
    overflow-y: auto;
}

.awards-panel::-webkit-scrollbar {
    width: 3px;
}

.awards-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.awards-panel::-webkit-scrollbar-thumb {
    background: #FF3D2E;
    border-radius: 10px;
}

/* Animasyon - her ödül sırayla açılır */
.award-item {
    opacity: 0;
    transform: translateX(-10px);
    animation: awardSlideIn 0.4s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.05s);
}

@keyframes awardSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .awards-compact {
        bottom: 16px;
        right: 16px;
    }

    .awards-trigger {
        padding: 6px 14px 6px 10px;
    }

    .awards-label {
        font-size: 0.7rem;
    }

    .awards-panel {
        min-width: 220px;
        margin-bottom: 8px;
    }

    .award-item {
        padding: 8px 10px;
    }

    .award-icon-mini {
        font-size: 1.2rem;
        width: 28px;
    }

    .award-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .awards-compact {
        bottom: 12px;
        right: 12px;
    }

    .awards-trigger {
        padding: 5px 12px 5px 8px;
    }

    .awards-label {
        display: none;
    }

    .awards-panel {
        min-width: 200px;
        right: -10px;
    }
}

/* ===================================================
   SERVICES PREMIUM - ULTRA PROFESSIONAL
   =================================================== */

.services-premium {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    position: relative;
    overflow: hidden;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 61, 46, 0.3), transparent);
}

.services-premium-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.services-badge {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FF3D2E;
    font-weight: 500;
    background: rgba(255, 61, 46, 0.1);
    padding: 6px 20px;
    border-radius: 100px;
}

.services-badge-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #FF3D2E, transparent);
}

.services-title-wrapper {
    margin-bottom: 24px;
}

.services-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #FF3D2E, #FF8A5C, #FF3D2E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleShimmer 3s ease infinite;
}

@keyframes titleShimmer {
    0% {
        background-position: 0% 50%;
    }

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

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

.services-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.decoration-dot {
    width: 4px;
    height: 4px;
    background: #FF3D2E;
    border-radius: 50%;
}

.decoration-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #FF3D2E, rgba(255, 61, 46, 0.2));
}

.services-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.service-premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 32px 28px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: cardFadeUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
    transform: translateY(30px);
}

@keyframes cardFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 61, 46, 0.3);
    background: rgba(255, 61, 46, 0.03);
}

.service-premium-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 61, 46, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-premium-card:hover .service-premium-glow {
    opacity: 1;
}

.service-premium-number {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #FF3D2E;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0.6;
}

.service-premium-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text);
    transition: all 0.3s;
}

.service-premium-card:hover .service-premium-icon {
    transform: scale(1.05);
    color: #FF3D2E;
}

.service-premium-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-premium-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.service-premium-features span {
    font-size: 0.7rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.service-premium-card:hover .service-premium-features span {
    border-color: rgba(255, 61, 46, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.service-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    transition: all 0.3s;
}

.service-premium-card:hover .service-premium-link {
    color: #FF3D2E;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-premium {
        padding: 80px 0;
    }

    .services-premium-grid {
        grid-template-columns: 1fr;
    }

    .service-premium-card {
        padding: 28px 24px;
    }

    .service-premium-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-badge {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }

    .services-subtitle {
        font-size: 0.95rem;
    }
}

/* ===================================================
   CONNECT INDICATOR - GARANTİLİ ÇALIŞAN VERSİYON
   =================================================== */

/* Desktop */
.connect-indicator {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.connect-indicator h4 {
    margin: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #FF3D2E;
}

/* Ok container */
.diagonal-arrow {
    position: relative;
    width: 70px;
    height: 45px;
    flex-shrink: 0;
}

/* Katmanlar */
.arrow-layer-1,
.arrow-layer-2,
.arrow-layer-3,
.arrow-layer-4 {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0;
}

.arrow-layer-1 {
    top: 0;
    right: 0;
    border-width: 0 50px 50px 0;
    border-color: transparent rgba(255, 61, 46, 0.12) transparent transparent;
    animation: reveal1 2s infinite;
}

.arrow-layer-2 {
    top: 6px;
    right: 6px;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(255, 61, 46, 0.2) transparent transparent;
    animation: reveal2 2s infinite;
}

.arrow-layer-3 {
    top: 12px;
    right: 12px;
    border-width: 0 30px 30px 0;
    border-color: transparent rgba(255, 61, 46, 0.35) transparent transparent;
    animation: reveal3 2s infinite;
}

.arrow-layer-4 {
    top: 18px;
    right: 18px;
    border-width: 0 20px 20px 0;
    border-color: transparent #FF3D2E transparent transparent;
    animation: reveal4 2s infinite;
    filter: drop-shadow(0 0 3px rgba(255, 61, 46, 0.5));
}

/* Animations */
@keyframes reveal1 {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes reveal2 {

    0%,
    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes reveal3 {

    0%,
    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes reveal4 {

    0%,
    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ===================================================
   MOBILE (768px ve altı) - GARANTİLİ
   =================================================== */
@media (max-width: 768px) {
    .connect-indicator {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .connect-indicator h4 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        white-space: nowrap;
    }

    /* Ok container mobil */
    .diagonal-arrow {
        position: relative !important;
        right: 0 !important;
        margin-left: auto !important;
        display: block !important;
    }

    /* Katmanlar mobil */
    .arrow-layer-1 {
        border-width: 0 40px 40px 0;
        animation: reveal1Mobile 2s infinite;
    }

    .arrow-layer-2 {
        top: 5px;
        right: 5px;
        border-width: 0 32px 32px 0;
        animation: reveal2Mobile 2s infinite;
    }

    .arrow-layer-3 {
        top: 10px;
        right: 10px;
        border-width: 0 24px 24px 0;
        animation: reveal3Mobile 2s infinite;
    }

    .arrow-layer-4 {
        top: 15px;
        right: 15px;
        border-width: 0 16px 16px 0;
        animation: reveal4Mobile 2s infinite;
    }

    /* Mobil animasyonlar */
    @keyframes reveal1Mobile {
        0% {
            opacity: 0;
            border-width: 0 40px 40px 0;
        }

        25% {
            opacity: 1;
            border-width: 0 40px 40px 0;
        }

        100% {
            opacity: 1;
            border-width: 0 40px 40px 0;
        }
    }

    @keyframes reveal2Mobile {

        0%,
        25% {
            opacity: 0;
            border-width: 0 32px 32px 0;
        }

        50% {
            opacity: 1;
            border-width: 0 32px 32px 0;
        }

        100% {
            opacity: 1;
            border-width: 0 32px 32px 0;
        }
    }

    @keyframes reveal3Mobile {

        0%,
        50% {
            opacity: 0;
            border-width: 0 24px 24px 0;
        }

        75% {
            opacity: 1;
            border-width: 0 24px 24px 0;
        }

        100% {
            opacity: 1;
            border-width: 0 24px 24px 0;
        }
    }

    @keyframes reveal4Mobile {

        0%,
        75% {
            opacity: 0;
            border-width: 0 16px 16px 0;
        }

        100% {
            opacity: 1;
            border-width: 0 16px 16px 0;
        }
    }
}

/* 480px ve altı */
@media (max-width: 480px) {
    .diagonal-arrow {
        width: 50px;
        height: 50px;
    }

    .arrow-layer-1 {
        border-width: 0 35px 35px 0;
    }

    .arrow-layer-2 {
        top: 4px;
        right: 4px;
        border-width: 0 28px 28px 0;
    }

    .arrow-layer-3 {
        top: 8px;
        right: 8px;
        border-width: 0 21px 21px 0;
    }

    .arrow-layer-4 {
        top: 12px;
        right: 12px;
        border-width: 0 14px 14px 0;
    }
}