            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Inter', sans-serif;
                background: #000;
                color: #fff;
                overflow-x: hidden;
                min-height: 100vh;
            }

            /* ======= NAVBAR ======= */
            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 100;
                padding: 20px 60px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                backdrop-filter: blur(20px);
                background: rgba(0, 0, 0, 0.4);
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .logo {
                font-size: 22px;
                font-weight: 800;
                letter-spacing: 1px;
                color: #fff;
            }

            .logo span {
                color: #ccc;
                font-weight: 400;
            }

            .logo .co {
                color: #d4a843;
                font-weight: 600;
            }

            .nav-links {
                display: flex;
                gap: 32px;
                list-style: none;
            }

            .nav-links a {
                color: rgba(255,255,255,0.6);
                text-decoration: none;
                font-size: 14px;
                font-weight: 400;
                transition: color 0.3s;
                position: relative;
            }

            .nav-links a:hover {
                color: #fff;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 0;
                height: 1px;
                background: #fff;
                transition: width 0.3s;
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            .nav-right {
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .nav-login {
                color: rgba(255,255,255,0.6);
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s;
            }

            .nav-login:hover {
                color: #fff;
            }

            /* ======= HERO ======= */
            .hero {
                position: relative;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                overflow: hidden;
                padding: 0 60px;
            }

            .hero-content {
                position: relative;
                z-index: 10;
                text-align: left;
                max-width: 600px;
                padding: 0;
                margin-top: 0;
            }

            .hero h1 {
                font-size: clamp(44px, 6vw, 80px);
                font-weight: 700;
                line-height: 1.05;
                letter-spacing: -2px;
                margin-bottom: 24px;
                background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
                -webkit-background-clip: text;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 50%, #d4a843 100%);
    -webkit-text-fill-color: transparent;
            }

            .hero p {
                font-size: 16px;
                line-height: 1.7;
                color: rgba(255,255,255,0.5);
                max-width: 460px;
                margin: 0 0 40px;
                font-weight: 300;
            }

            .hero-buttons {
                display: flex;
                gap: 16px;
                justify-content: flex-start;
                flex-wrap: wrap;
            }

            .btn-primary {
                padding: 14px 32px;
                background: #fff;
                color: #000;
                border: none;
                border-radius: 50px;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 8px;
            }

            .btn-primary:hover {
                background: #e0e0e0;
                transform: translateY(-2px);
                box-shadow: 0 10px 40px rgba(255,255,255,0.1);
            }

            .btn-primary svg {
                width: 16px;
                height: 16px;
                transition: transform 0.3s;
            }

            .btn-primary:hover svg {
                transform: translateX(3px);
            }

            .btn-secondary {
                padding: 14px 32px;
                background: transparent;
                color: #fff;
                border: 1px solid rgba(255,255,255,0.2);
                border-radius: 50px;
                font-size: 14px;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 8px;
            }

            .btn-secondary:hover {
                border-color: rgba(255,255,255,0.5);
                background: rgba(255,255,255,0.05);
                transform: translateY(-2px);
            }

            /* ======= GLOBE CANVAS ======= */
            #globeCanvas {
                position: absolute;
                top: 50%;
                right: -10%;
                transform: translateY(-50%);
                z-index: 1;
            }

            /* ======= GLOW EFFECT ======= */
            .globe-glow {
                position: absolute;
                top: 50%;
                right: -10%;
                transform: translateY(-50%);
                width: 900px;
                height: 900px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
                z-index: 0;
                pointer-events: none;
            }

            .globe-glow-ring {
                position: absolute;
                top: 50%;
                right: calc(-10% + 50px);
                transform: translateY(-50%);
                width: 760px;
                height: 760px;
                border-radius: 50%;
                border: 1px solid rgba(255,255,255,0.04);
                z-index: 0;
                pointer-events: none;
            }

            /* ======= FLOATING CARDS ======= */
            .floating-cards-container {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 20;
                pointer-events: none;
                overflow: hidden;
            }

            .floating-card {
                position: absolute;
                background: rgba(15, 15, 15, 0.92);
                backdrop-filter: blur(24px);
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 14px;
                padding: 12px 18px;
                display: flex;
                align-items: center;
                gap: 12px;
                box-shadow: 0 16px 50px rgba(0,0,0,0.6);
                pointer-events: auto;
                opacity: 0;
                transform-origin: center bottom;
                transition: none;
                white-space: nowrap;
            }

            @keyframes cardPopIn {
                to { opacity: 1; transform: scale(1) translateY(0); }
            }

            @keyframes cardFloat {
                0%, 100% { margin-top: 0; }
                50% { margin-top: -8px; }
            }

            @keyframes cardPopOut {
                to { opacity: 0; transform: scale(0.8) translateY(-10px); }
            }

            .floating-card .card-icon {
                width: 34px;
                height: 34px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 15px;
                flex-shrink: 0;
                font-weight: 700;
            }

            .floating-card .card-body {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            .floating-card .card-body strong {
                font-size: 12px;
                font-weight: 600;
                color: #fff;
            }

            .floating-card .card-body small {
                font-size: 10px;
                color: rgba(255,255,255,0.4);
            }

            .card-line {
                position: absolute;
                width: 1px;
                height: 40px;
                bottom: -40px;
                left: 50%;
                background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
            }

            /* ======= STARS ======= */
            .stars {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                pointer-events: none;
            }

            .star {
                position: absolute;
                width: 2px;
                height: 2px;
                background: rgba(255,255,255,0.3);
                border-radius: 50%;
                animation: twinkle var(--duration) ease-in-out infinite;
            }

            @keyframes twinkle {
                0%, 100% { opacity: 0.2; }
                50% { opacity: 0.8; }
            }

            /* ======= SCROLL INDICATOR ======= */
            .scroll-indicator {
                position: absolute;
                bottom: 40px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 20;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;
                opacity: 0.4;
                animation: fadeInUp 1s 2s both;
            }

            .scroll-indicator span {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 3px;
                font-weight: 400;
            }

            .scroll-line {
                width: 1px;
                height: 40px;
                position: relative;
                overflow: hidden;
                background: rgba(255,255,255,0.1);
            }

            .scroll-line::after {
                content: '';
                position: absolute;
                top: -100%;
                left: 0;
                width: 100%;
                height: 100%;
                background: #fff;
                animation: scrollDown 2s ease-in-out infinite;
            }

            @keyframes scrollDown {
                0% { top: -100%; }
                100% { top: 100%; }
            }

            @keyframes fadeInUp {
                from { opacity: 0; transform: translate(-50%, 20px); }
                to { opacity: 0.4; transform: translate(-50%, 0); }
            }

            /* ======= SECOND SECTION ======= */
            .section-services {
                position: relative;
                padding: 140px 60px;
                z-index: 10;
                overflow: hidden;
            }

            .section-services::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            }

            /* Ambient glow behind grid */
            .section-services::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 800px;
                height: 800px;
                background: radial-gradient(circle, rgba(212,168,67,0.03) 0%, transparent 70%);
                pointer-events: none;
                z-index: 0;
            }

            .section-header {
                text-align: center;
                margin-bottom: 80px;
                position: relative;
                z-index: 1;
            }

            .section-tag {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 4px;
                color: rgba(212,168,67,0.6);
                margin-bottom: 20px;
                display: inline-flex;
                align-items: center;
                gap: 12px;
            }

            .section-tag::before,
            .section-tag::after {
                content: '';
                width: 30px;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4));
            }

            .section-tag::after {
                background: linear-gradient(90deg, rgba(212,168,67,0.4), transparent);
            }

            .section-header h2 {
                font-size: clamp(32px, 5vw, 56px);
                font-weight: 700;
                letter-spacing: -1px;
                background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
                -webkit-background-clip: text;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.9));
    -webkit-text-fill-color: transparent;
            }

            .services-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2px;
                max-width: 1200px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            .service-card {
                position: relative;
                background: rgba(255,255,255,0.015);
                border: 1px solid rgba(255,255,255,0.04);
                border-radius: 24px;
                padding: 44px 36px;
                overflow: hidden;
                cursor: pointer;
                transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                            border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                            box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
                will-change: transform;
            }

            /* Mouse-tracking gradient overlay */
            .service-card .card-gradient {
                position: absolute;
                top: 0; left: 0; right: 0; bottom: 0;
                opacity: 0;
                transition: opacity 0.5s;
                pointer-events: none;
                border-radius: 24px;
                z-index: 0;
            }

            .service-card:hover .card-gradient {
                opacity: 1;
            }

            /* Animated border glow on hover */
            .service-card .card-border-glow {
                position: absolute;
                top: -1px; left: -1px; right: -1px; bottom: -1px;
                border-radius: 25px;
                opacity: 0;
                transition: opacity 0.5s;
                pointer-events: none;
                z-index: 0;
                background: conic-gradient(from var(--border-angle, 0deg), 
                    transparent 0%, 
                    rgba(212,168,67,0.3) 10%, 
                    transparent 20%,
                    transparent 80%,
                    rgba(212,168,67,0.15) 90%,
                    transparent 100%
                );
                -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;
                padding: 1px;
            }

            .service-card:hover .card-border-glow {
                opacity: 1;
                animation: rotateBorder 4s linear infinite;
            }

            @keyframes rotateBorder {
                to { --border-angle: 360deg; }
            }

            @property --border-angle {
                syntax: '<angle>';
                initial-value: 0deg;
                inherits: false;
            }

            .service-card:hover {
                border-color: rgba(212,168,67,0.15);
                transform: translateY(-8px) scale(1.02);
                box-shadow: 
                    0 20px 60px rgba(0,0,0,0.5),
                    0 0 40px rgba(212,168,67,0.04),
                    inset 0 1px 0 rgba(255,255,255,0.06);
            }

            /* Shine sweep effect */
            .service-card::after {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 60%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
                transform: skewX(-20deg);
                transition: none;
                z-index: 1;
                pointer-events: none;
            }

            .service-card:hover::after {
                animation: shineSweep 0.8s ease forwards;
            }

            @keyframes shineSweep {
                to { left: 150%; }
            }

            .service-icon {
                width: 56px;
                height: 56px;
                border-radius: 16px;
                background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(212,168,67,0.02));
                border: 1px solid rgba(212,168,67,0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 28px;
                font-size: 22px;
                position: relative;
                z-index: 2;
                transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                            box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                            border-color 0.5s;
            }

            .service-card:hover .service-icon {
                transform: translateY(-4px) scale(1.1);
                box-shadow: 0 8px 24px rgba(212,168,67,0.15);
                border-color: rgba(212,168,67,0.3);
            }

            .service-card h3 {
                font-size: 20px;
                font-weight: 600;
                margin-bottom: 12px;
                position: relative;
                z-index: 2;
                transition: color 0.4s;
            }

            .service-card:hover h3 {
                background: linear-gradient(135deg, #fff, #d4a843);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .service-card p {
                font-size: 14px;
                line-height: 1.8;
                color: rgba(255,255,255,0.35);
                font-weight: 300;
                position: relative;
                z-index: 2;
                transition: color 0.4s;
            }

            .service-card:hover p {
                color: rgba(255,255,255,0.55);
            }

            /* Card number */
            .card-number {
                position: absolute;
                top: 28px;
                right: 32px;
                font-size: 64px;
                font-weight: 800;
                color: rgba(255,255,255,0.015);
                line-height: 1;
                z-index: 0;
                transition: color 0.5s;
                pointer-events: none;
            }

            .service-card:hover .card-number {
                color: rgba(212,168,67,0.06);
            }

            /* Arrow indicator */
            .card-arrow {
                position: absolute;
                bottom: 32px;
                right: 32px;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                border: 1px solid rgba(255,255,255,0.08);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 2;
                opacity: 0;
                transform: translate(-8px, 8px);
                transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .card-arrow svg {
                width: 14px;
                height: 14px;
                stroke: rgba(212,168,67,0.8);
            }

            .service-card:hover .card-arrow {
                opacity: 1;
                transform: translate(0, 0);
                border-color: rgba(212,168,67,0.3);
                background: rgba(212,168,67,0.05);
            }

            /* ======= STATS ======= */
            .stats-section {
                padding: 100px 60px;
                position: relative;
            }

            .stats-section::before {
                content: '';
                position: absolute;
                top: 0; left: 0; width: 100%; height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
            }

            .stats-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .stat-card {
                background: rgba(255,255,255,0.02);
                border: 1px solid rgba(255,255,255,0.06);
                border-radius: 24px;
                padding: 36px 28px;
                text-align: center;
                position: relative;
                overflow: hidden;
                transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .stat-card::before {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0; bottom: 0;
                background: radial-gradient(circle at 50% 0%, rgba(212,168,67,0.04) 0%, transparent 60%);
                opacity: 0;
                transition: opacity 0.5s;
            }

            .stat-card:hover {
                border-color: rgba(212,168,67,0.15);
                transform: translateY(-6px);
                box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            }

            .stat-card:hover::before { opacity: 1; }

            .stat-ring {
                width: 90px; height: 90px;
                margin: 0 auto 20px;
                position: relative;
            }

            .stat-ring svg {
                width: 100%; height: 100%;
                transform: rotate(-90deg);
            }

            .stat-ring-bg {
                fill: none;
                stroke: rgba(255,255,255,0.04);
                stroke-width: 4;
            }

            .stat-ring-fill {
                fill: none;
                stroke: url(#goldGradient);
                stroke-width: 4;
                stroke-linecap: round;
                stroke-dasharray: 326.7;
                stroke-dashoffset: 326.7;
                transition: stroke-dashoffset 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .stat-icon {
                position: absolute;
                top: 50%; left: 50%;
                transform: translate(-50%, -50%);
                font-size: 28px;
            }

            .stat-card h3 {
                font-size: 44px;
                font-weight: 800;
                margin-bottom: 6px;
                background: linear-gradient(180deg, #fff, rgba(255,255,255,0.4));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                position: relative;
                z-index: 1;
            }

            .stat-card > p {
                font-size: 12px;
                color: rgba(255,255,255,0.35);
                text-transform: uppercase;
                letter-spacing: 2px;
                font-weight: 500;
                margin-bottom: 12px;
                position: relative;
                z-index: 1;
            }

            .stat-badge {
                font-size: 11px;
                color: rgba(212,168,67,0.6);
                background: rgba(212,168,67,0.06);
                padding: 4px 12px;
                border-radius: 20px;
                border: 1px solid rgba(212,168,67,0.1);
                position: relative;
                z-index: 1;
            }

            /* ======= ABOUT ======= */
            .section-about {
                padding: 140px 60px;
                position: relative;
                overflow: hidden;
            }

            .about-wrapper {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                max-width: 1200px;
                margin: 0 auto;
                align-items: center;
            }

            .about-visual {
                position: relative;
            }

            .about-img-box {
                position: relative;
                width: 100%;
                aspect-ratio: 4/5;
            }

            .about-pattern {
                position: absolute;
                top: -20px; right: -20px;
                width: 200px; height: 200px;
                background-image: radial-gradient(rgba(212,168,67,0.15) 1px, transparent 1px);
                background-size: 16px 16px;
                opacity: 0.5;
                z-index: 0;
            }

            .about-img-placeholder {
                width: 100%; height: 100%;
                background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.02));
                border: 1px solid rgba(255,255,255,0.06);
                border-radius: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                z-index: 1;
                overflow: hidden;
            }

            .about-img-placeholder span {
                font-size: 120px;
                font-weight: 800;
                color: rgba(212,168,67,0.06);
            }

            .about-img-placeholder::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
            }

            .about-float-badge {
                position: absolute;
                background: rgba(15,15,15,0.9);
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: 16px;
                padding: 16px 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2px;
                z-index: 2;
                box-shadow: 0 16px 40px rgba(0,0,0,0.6);
            }

            .about-float-badge strong {
                font-size: 24px;
                font-weight: 800;
                background: linear-gradient(135deg, #d4a843, #f0d78c);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .about-float-badge small {
                font-size: 11px;
                color: rgba(255,255,255,0.4);
                text-transform: uppercase;
                letter-spacing: 2px;
            }

            .about-badge-1 { bottom: 30px; left: -20px; }
            .about-badge-2 { top: 40px; right: -20px; }

            .about-content h2 {
                font-size: clamp(28px, 4vw, 44px);
                font-weight: 700;
                letter-spacing: -1px;
                margin-bottom: 20px;
                background: linear-gradient(180deg, #fff, rgba(255,255,255,0.6));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .about-desc {
                font-size: 15px;
                line-height: 1.8;
                color: rgba(255,255,255,0.45);
                font-weight: 300;
                margin-bottom: 40px;
            }

            .about-features {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .about-feature {
                display: flex;
                gap: 14px;
                align-items: flex-start;
                padding: 16px;
                border-radius: 16px;
                border: 1px solid rgba(255,255,255,0.04);
                background: rgba(255,255,255,0.015);
                transition: all 0.3s;
            }

            .about-feature:hover {
                border-color: rgba(212,168,67,0.1);
                background: rgba(212,168,67,0.02);
            }

            .af-icon {
                width: 36px;
                height: 36px;
                border-radius: 10px;
                background: rgba(212,168,67,0.08);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                flex-shrink: 0;
            }

            .about-feature strong {
                font-size: 13px;
                font-weight: 600;
                display: block;
                margin-bottom: 3px;
            }

            .about-feature p {
                font-size: 12px;
                color: rgba(255,255,255,0.35);
                line-height: 1.5;
            }

            /* ======= MARQUEE ======= */
            .marquee-section {
                padding: 40px 0;
                overflow: hidden;
                border-top: 1px solid rgba(255,255,255,0.04);
                border-bottom: 1px solid rgba(255,255,255,0.04);
            }

            .marquee-track {
                display: flex;
                overflow: hidden;
            }

            .marquee-content {
                display: flex;
                align-items: center;
                gap: 40px;
                animation: marqueeScroll 25s linear infinite;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .marquee-content span {
                font-size: clamp(28px, 4vw, 48px);
                font-weight: 800;
                color: rgba(255,255,255,0.04);
                text-transform: uppercase;
                letter-spacing: 2px;
                transition: color 0.3s;
            }

            .marquee-content span:hover {
                color: rgba(212,168,67,0.15);
            }

            .marquee-dot {
                font-size: 12px !important;
                color: rgba(212,168,67,0.2) !important;
            }

            @keyframes marqueeScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }

            .marquee-content-reverse {
                animation: marqueeScrollReverse 20s linear infinite;
            }

            .marquee-reverse { margin-top: 12px; }

            @keyframes marqueeScrollReverse {
                0% { transform: translateX(-50%); }
                100% { transform: translateX(0); }
            }

            /* ======= PORTFOLIO ======= */
            .section-portfolio {
                padding: 140px 60px;
                position: relative;
            }

            .section-sub {
                font-size: 15px;
                color: rgba(255,255,255,0.35);
                margin-top: 16px;
                font-weight: 300;
            }

            .portfolio-filter {
                display: flex;
                gap: 8px;
                justify-content: center;
                margin-bottom: 48px;
                flex-wrap: wrap;
            }

            .pf-btn {
                padding: 10px 24px;
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: 50px;
                background: transparent;
                color: rgba(255,255,255,0.5);
                font-size: 13px;
                font-family: 'Inter', sans-serif;
                cursor: pointer;
                transition: all 0.3s;
            }

            .pf-btn:hover, .pf-btn.active {
                background: rgba(212,168,67,0.1);
                border-color: rgba(212,168,67,0.3);
                color: #d4a843;
            }

            .portfolio-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .portfolio-wide {
                grid-column: span 2;
            }

            .portfolio-item {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                cursor: pointer;
            }

            .portfolio-img {
                width: 100%;
                height: 360px;
                position: relative;
                transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .portfolio-wide .portfolio-img {
                height: 300px;
            }

            .portfolio-item:hover .portfolio-img {
                transform: scale(1.05);
            }

            .portfolio-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                padding: 36px;
                transition: background 0.4s;
            }

            .portfolio-item:hover .portfolio-overlay {
                background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
            }

            .portfolio-cat {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 3px;
                color: #d4a843;
                margin-bottom: 10px;
                font-weight: 500;
            }

            .portfolio-overlay h3 {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 8px;
            }

            .portfolio-overlay p {
                font-size: 14px;
                color: rgba(255,255,255,0.5);
                margin-bottom: 16px;
                font-weight: 300;
            }

            .portfolio-link {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                color: #fff;
                text-decoration: none;
                font-size: 13px;
                font-weight: 500;
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .portfolio-item:hover .portfolio-link {
                opacity: 1;
                transform: translateY(0);
            }

            .portfolio-num {
                position: absolute;
                top: 16px; left: 20px;
                font-size: 11px;
                font-weight: 700;
                color: rgba(255,255,255,0.2);
                letter-spacing: 1px;
                z-index: 2;
                background: rgba(0,0,0,0.4);
                backdrop-filter: blur(10px);
                padding: 4px 10px;
                border-radius: 20px;
                border: 1px solid rgba(255,255,255,0.08);
            }

            .portfolio-tags {
                display: flex;
                gap: 6px;
                margin-bottom: 12px;
                flex-wrap: wrap;
            }

            .portfolio-tags span {
                font-size: 10px;
                padding: 3px 10px;
                border-radius: 20px;
                background: rgba(255,255,255,0.06);
                color: rgba(255,255,255,0.5);
                border: 1px solid rgba(255,255,255,0.06);
                letter-spacing: 0.5px;
            }

            /* ======= TECH STACK ======= */
            .section-tech {
                padding: 100px 60px;
                position: relative;
            }

            .tech-grid {
                display: grid;
                grid-template-columns: repeat(6, 1fr);
                gap: 16px;
                max-width: 900px;
                margin: 0 auto;
            }

            .tech-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
                padding: 28px 16px;
                border: 1px solid rgba(255,255,255,0.04);
                border-radius: 16px;
                background: rgba(255,255,255,0.015);
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                cursor: default;
            }

            .tech-item:hover {
                border-color: rgba(212,168,67,0.15);
                background: rgba(212,168,67,0.03);
                transform: translateY(-4px);
            }

            .tech-logo {
                font-size: 28px;
                display: block;
            }

            .tech-item > span:last-child {
                font-size: 11px;
                color: rgba(255,255,255,0.4);
                font-weight: 500;
                letter-spacing: 0.5px;
            }

            /* ======= PROCESS ======= */
            .section-process {
                padding: 140px 60px;
                position: relative;
            }

            .process-timeline {
                max-width: 700px;
                margin: 0 auto;
                position: relative;
            }

            .process-line {
                position: absolute;
                left: 20px;
                top: 0;
                width: 1px;
                height: 100%;
                background: rgba(255,255,255,0.06);
            }

            .process-line::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 0%;
                background: linear-gradient(180deg, #d4a843, rgba(212,168,67,0.1));
                transition: height 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .process-timeline.active .process-line::after {
                height: 100%;
            }

            .process-step {
                display: flex;
                gap: 36px;
                padding: 32px 0;
                position: relative;
                opacity: 0;
                transform: translateX(-20px);
                transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .process-step.visible {
                opacity: 1;
                transform: translateX(0);
            }

            .process-dot {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: 2px solid rgba(255,255,255,0.08);
                background: #000;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                z-index: 1;
                transition: all 0.5s;
            }

            .process-step.visible .process-dot {
                border-color: #d4a843;
                box-shadow: 0 0 20px rgba(212,168,67,0.2);
            }

            .process-dot::after {
                content: attr(data-num);
                font-size: 12px;
                font-weight: 700;
                color: rgba(255,255,255,0.3);
            }

            .process-step.visible .process-dot::after {
                color: #d4a843;
            }

            .process-step::before {
                content: attr(data-step);
                position: absolute;
                left: 6px;
                top: 42px;
                font-size: 10px;
                font-weight: 700;
                color: rgba(255,255,255,0.08);
                letter-spacing: 1px;
            }

            .process-content h3 {
                font-size: 20px;
                font-weight: 600;
                margin-bottom: 10px;
            }

            .process-content p {
                font-size: 14px;
                line-height: 1.8;
                color: rgba(255,255,255,0.4);
                font-weight: 300;
            }

            .process-pills {
                display: flex;
                gap: 6px;
                margin-top: 14px;
                flex-wrap: wrap;
            }

            .process-pills span {
                font-size: 10px;
                padding: 4px 12px;
                border-radius: 20px;
                background: rgba(212,168,67,0.06);
                color: rgba(212,168,67,0.5);
                border: 1px solid rgba(212,168,67,0.08);
                letter-spacing: 0.5px;
            }

            .pdot-icon {
                font-size: 16px;
                line-height: 1;
            }

            /* ======= TESTIMONIALS ======= */
            .section-testimonials {
                padding: 140px 60px;
                overflow: hidden;
                position: relative;
            }

            .testimonials-track {
                display: flex;
                gap: 24px;
                max-width: 1200px;
                margin: 0 auto;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding-bottom: 20px;
            }

            .testimonials-track::-webkit-scrollbar { display: none; }

            .testimonial-card {
                min-width: 360px;
                max-width: 400px;
                flex-shrink: 0;
                scroll-snap-align: start;
                background: rgba(255,255,255,0.02);
                border: 1px solid rgba(255,255,255,0.06);
                border-radius: 20px;
                padding: 36px;
                position: relative;
                transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .testimonial-card:hover {
                border-color: rgba(212,168,67,0.15);
                transform: translateY(-6px);
                box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            }

            .testimonial-stars {
                font-size: 14px;
                color: #d4a843;
                margin-bottom: 20px;
                letter-spacing: 2px;
            }

            .testimonial-card > p {
                font-size: 15px;
                line-height: 1.8;
                color: rgba(255,255,255,0.6);
                font-weight: 300;
                font-style: italic;
                margin-bottom: 28px;
            }

            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .testimonial-avatar {
                width: 44px;
                height: 44px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                font-weight: 700;
                color: #fff;
                flex-shrink: 0;
            }

            .testimonial-author strong {
                font-size: 14px;
                font-weight: 600;
                display: block;
                margin-bottom: 2px;
            }

            .testimonial-author span {
                font-size: 12px;
                color: rgba(255,255,255,0.35);
            }

            .tcard-quote {
                position: absolute;
                top: 20px; right: 24px;
                font-size: 48px;
                font-weight: 800;
                color: rgba(212,168,67,0.06);
                line-height: 1;
                font-family: Georgia, serif;
            }

            .tcard-border {
                position: absolute;
                bottom: 0; left: 36px; right: 36px;
                height: 2px;
                background: linear-gradient(90deg, transparent, rgba(212,168,67,0.15), transparent);
                opacity: 0;
                transition: opacity 0.5s;
            }

            .testimonial-card:hover .tcard-border { opacity: 1; }

            .tcard-project {
                display: inline-block;
                font-size: 10px;
                padding: 4px 10px;
                border-radius: 20px;
                background: rgba(212,168,67,0.06);
                color: rgba(212,168,67,0.5);
                border: 1px solid rgba(212,168,67,0.08);
                margin-top: 12px;
                letter-spacing: 0.5px;
            }

            /* ======= CTA ======= */
            .section-cta {
                padding: 160px 60px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .cta-grid-bg {
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
                background-size: 60px 60px;
                pointer-events: none;
                mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
                -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
            }

            .cta-glow {
                position: absolute;
                top: 50%; left: 50%;
                transform: translate(-50%, -50%);
                width: 700px; height: 700px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 60%);
                pointer-events: none;
                animation: ctaPulse 5s ease-in-out infinite;
            }

            .cta-glow-2 {
                position: absolute;
                top: 30%; left: 60%;
                transform: translate(-50%, -50%);
                width: 400px; height: 400px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(212,168,67,0.03) 0%, transparent 60%);
                pointer-events: none;
                animation: ctaPulse 7s ease-in-out infinite reverse;
            }

            @keyframes ctaPulse {
                0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
                50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
            }

            .cta-content {
                position: relative; z-index: 1;
            }

            .cta-content h2 {
                font-size: clamp(36px, 5vw, 60px);
                font-weight: 700;
                letter-spacing: -1px;
                margin-bottom: 20px;
                background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .cta-desc {
                font-size: 16px;
                color: rgba(255,255,255,0.45);
                max-width: 520px;
                margin: 0 auto 40px;
                line-height: 1.7;
                font-weight: 300;
            }

            .cta-buttons {
                display: flex;
                gap: 20px;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
            }

            .btn-cta-primary {
                padding: 18px 40px;
                background: linear-gradient(135deg, #d4a843, #b8860b);
                color: #000;
                border: none;
                border-radius: 50px;
                font-size: 15px;
                font-weight: 700;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                box-shadow: 0 4px 24px rgba(212,168,67,0.2);
            }

            .btn-cta-primary:hover {
                transform: translateY(-3px) scale(1.03);
                box-shadow: 0 12px 40px rgba(212,168,67,0.35);
            }

            .btn-cta-secondary {
                padding: 18px 40px;
                color: rgba(255,255,255,0.6);
                text-decoration: none;
                font-size: 14px;
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 50px;
                transition: all 0.3s;
            }

            .btn-cta-secondary:hover {
                color: #fff;
                border-color: rgba(255,255,255,0.3);
            }

            .cta-badge {
                display: inline-block;
                font-size: 12px;
                padding: 8px 20px;
                border-radius: 50px;
                background: rgba(212,168,67,0.06);
                color: rgba(212,168,67,0.7);
                border: 1px solid rgba(212,168,67,0.12);
                margin-bottom: 24px;
                letter-spacing: 0.5px;
                position: relative;
                z-index: 1;
            }

            .cta-trust {
                display: flex;
                align-items: center;
                gap: 14px;
                justify-content: center;
                margin-top: 32px;
                position: relative;
                z-index: 1;
            }

            .cta-trust-avatars {
                display: flex;
            }

            .cta-av {
                width: 32px; height: 32px;
                border-radius: 50%;
                border: 2px solid #000;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: 600;
                margin-left: -8px;
            }

            .cta-av:first-child { margin-left: 0; }

            .cta-trust > span {
                font-size: 12px;
                color: rgba(255,255,255,0.3);
            }

            /* ======= FULL FOOTER ======= */
            .main-footer {
                border-top: 1px solid rgba(255,255,255,0.05);
                padding: 0;
            }

            .footer-top {
                display: grid;
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 60px;
                padding: 80px 60px 60px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .footer-brand p {
                font-size: 14px;
                color: rgba(255,255,255,0.35);
                line-height: 1.7;
                margin: 16px 0 24px;
                max-width: 280px;
            }

            .footer-social {
                display: flex;
                gap: 12px;
            }

            .footer-social a {
                width: 40px; height: 40px;
                border-radius: 50%;
                border: 1px solid rgba(255,255,255,0.08);
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255,255,255,0.5);
                text-decoration: none;
                font-size: 14px;
                font-weight: 600;
                transition: all 0.3s;
            }

            .footer-social a:hover {
                border-color: #d4a843;
                color: #d4a843;
                transform: translateY(-3px);
            }

            .footer-col h4 {
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 24px;
                color: rgba(255,255,255,0.8);
            }

            .footer-col a {
                display: block;
                color: rgba(255,255,255,0.35);
                text-decoration: none;
                font-size: 14px;
                padding: 6px 0;
                transition: all 0.3s;
            }

            .footer-col a:hover {
                color: #d4a843;
                transform: translateX(4px);
            }

            .footer-bottom {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 24px 60px;
                border-top: 1px solid rgba(255,255,255,0.04);
            }

            .footer-bottom p {
                font-size: 13px;
                color: rgba(255,255,255,0.25);
            }

            .footer-bottom .footer-links {
                display: flex;
                gap: 24px;
            }

            .footer-bottom .footer-links a {
                color: rgba(255,255,255,0.25);
                text-decoration: none;
                font-size: 13px;
                transition: color 0.3s;
            }

            .footer-bottom .footer-links a:hover {
                color: #fff;
            }

            /* Footer newsletter & badge */
            .footer-cta-strip {
                background: linear-gradient(180deg, rgba(212,168,67,0.03), transparent);
                border-bottom: 1px solid rgba(255,255,255,0.04);
                padding: 48px 60px;
            }

            .fcs-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                max-width: 1200px;
                margin: 0 auto;
                gap: 40px;
            }

            .fcs-content h3 {
                font-size: 20px;
                font-weight: 600;
            }

            .fcs-content p {
                font-size: 14px;
                color: rgba(255,255,255,0.4);
                margin-top: 4px;
            }

            .footer-newsletter {
                display: flex;
                gap: 8px;
            }

            .fn-input {
                padding: 14px 20px;
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: 50px;
                background: rgba(255,255,255,0.03);
                color: #fff;
                font-size: 14px;
                font-family: 'Inter', sans-serif;
                width: 280px;
                outline: none;
                transition: border-color 0.3s;
            }

            .fn-input:focus {
                border-color: rgba(212,168,67,0.3);
            }

            .fn-input::placeholder {
                color: rgba(255,255,255,0.25);
            }

            .fn-btn {
                padding: 14px 28px;
                background: linear-gradient(135deg, #d4a843, #b8922f);
                color: #000;
                border: none;
                border-radius: 50px;
                font-size: 13px;
                font-weight: 600;
                font-family: 'Inter', sans-serif;
                cursor: pointer;
                transition: all 0.3s;
            }

            .fn-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 24px rgba(212,168,67,0.3);
            }

            .footer-badge {
                display: inline-block;
                font-size: 9px;
                padding: 2px 8px;
                border-radius: 10px;
                background: rgba(76,175,80,0.15);
                color: #4caf50;
                margin-left: 6px;
                vertical-align: middle;
                font-weight: 600;
                letter-spacing: 0.5px;
            }

            /* ======= PRELOADER ======= */
            .preloader {
                position: fixed;
                inset: 0;
                z-index: 9999;
                background: #000;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.6s;
            }

            .preloader.done {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .preloader-inner {
                text-align: center;
            }

            .preloader-logo {
                font-size: 36px;
                font-weight: 800;
                letter-spacing: 1px;
                color: #fff;
                margin-bottom: 32px;
                animation: preloaderPulse 1.5s ease-in-out infinite;
            }

            .preloader-logo span {
                color: #ccc;
                font-weight: 400;
            }

            .preloader-logo .co {
                color: #d4a843;
                font-weight: 600;
            }

            @keyframes preloaderPulse {
                0%, 100% { opacity: 0.6; }
                50% { opacity: 1; }
            }

            .preloader-bar {
                width: 200px;
                height: 2px;
                background: rgba(255,255,255,0.06);
                border-radius: 2px;
                overflow: hidden;
                margin: 0 auto;
            }

            .preloader-fill {
                width: 0%;
                height: 100%;
                background: linear-gradient(90deg, #d4a843, #f0d78c);
                border-radius: 2px;
                transition: width 0.3s ease;
            }

            .preloader-pct {
                font-size: 11px;
                color: rgba(255,255,255,0.25);
                margin-top: 12px;
                letter-spacing: 3px;
                font-weight: 500;
            }

            /* ======= CUSTOM CURSOR ======= */
            .cursor-dot {
                position: fixed;
                top: 0; left: 0;
                width: 8px; height: 8px;
                background: #d4a843;
                border-radius: 50%;
                pointer-events: none;
                z-index: 10000;
                transition: transform 0.1s ease, opacity 0.3s;
                transform: translate(-50%, -50%);
                mix-blend-mode: difference;
            }

            .cursor-ring {
                position: fixed;
                top: 0; left: 0;
                width: 40px; height: 40px;
                border: 1.5px solid rgba(212,168,67,0.4);
                border-radius: 50%;
                pointer-events: none;
                z-index: 10000;
                transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                            height 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                            border-color 0.3s,
                            background 0.3s;
                transform: translate(-50%, -50%);
            }

            .cursor-ring.hover {
                width: 60px; height: 60px;
                border-color: rgba(212,168,67,0.6);
                background: rgba(212,168,67,0.05);
            }

            .cursor-ring.click {
                width: 30px; height: 30px;
                border-color: #d4a843;
            }

            @media (max-width: 1024px) {
                .cursor-dot, .cursor-ring { display: none !important; }
            }

            /* ======= NOISE OVERLAY ======= */
            .noise-overlay {
                position: fixed;
                inset: 0;
                z-index: 9998;
                pointer-events: none;
                opacity: 0.025;
                background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
                background-repeat: repeat;
                background-size: 256px;
            }

            /* ======= HAMBURGER MENU ======= */
            .hamburger {
                display: none;
                flex-direction: column;
                gap: 5px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 8px;
                z-index: 201;
            }

            .hamburger span {
                display: block;
                width: 24px;
                height: 2px;
                background: #fff;
                border-radius: 2px;
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                transform-origin: center;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .mobile-menu {
                position: fixed;
                inset: 0;
                z-index: 200;
                background: rgba(0,0,0,0.97);
                backdrop-filter: blur(40px);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .mobile-menu.open {
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu ul {
                list-style: none;
                text-align: center;
                padding: 0;
            }

            .mobile-menu li {
                margin: 12px 0;
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .mobile-menu.open li {
                opacity: 1;
                transform: translateY(0);
            }

            .mobile-menu.open li:nth-child(1) { transition-delay: 0.1s; }
            .mobile-menu.open li:nth-child(2) { transition-delay: 0.15s; }
            .mobile-menu.open li:nth-child(3) { transition-delay: 0.2s; }
            .mobile-menu.open li:nth-child(4) { transition-delay: 0.25s; }
            .mobile-menu.open li:nth-child(5) { transition-delay: 0.3s; }

            .mobile-menu a {
                color: #fff;
                text-decoration: none;
                font-size: 32px;
                font-weight: 700;
                letter-spacing: -1px;
                transition: color 0.3s;
                display: inline-block;
            }

            .mobile-menu a:hover {
                color: #d4a843;
            }

            .mobile-menu-footer {
                margin-top: 48px;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
            }

            .mobile-menu.open .mobile-menu-footer {
                opacity: 1;
                transform: translateY(0);
            }

            /* ======= BACK TO TOP ======= */
            .back-to-top {
                position: fixed;
                bottom: 32px;
                right: 32px;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: rgba(212,168,67,0.1);
                border: 1px solid rgba(212,168,67,0.2);
                color: #d4a843;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                z-index: 100;
                opacity: 0;
                visibility: hidden;
                transform: translateY(20px);
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                backdrop-filter: blur(20px);
            }

            .back-to-top.visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .back-to-top:hover {
                background: rgba(212,168,67,0.2);
                border-color: rgba(212,168,67,0.4);
                transform: translateY(-4px);
                box-shadow: 0 8px 32px rgba(212,168,67,0.2);
            }

            /* ======= ENHANCED SECTION REVEALS ======= */
            .reveal-up {
                opacity: 0;
                transform: translateY(60px);
                transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), 
                            transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .reveal-up.revealed {
                opacity: 1;
                transform: translateY(0);
            }

            .reveal-scale {
                opacity: 0;
                transform: scale(0.9);
                transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
                            transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .reveal-scale.revealed {
                opacity: 1;
                transform: scale(1);
            }

            /* ======= TEXT GRADIENT ANIMATION ======= */
            @keyframes gradientShift {
                0% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
                100% { background-position: 0% 50%; }
            }

            .hero h1 {
                background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 25%, #d4a843 50%, rgba(255,255,255,0.7) 75%, #ffffff 100%);
                background-size: 200% 200%;
                -webkit-background-clip: text;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 50%, #d4a843 100%);
    -webkit-text-fill-color: transparent;
                animation: gradientShift 8s ease infinite;
            }

            /* ======= ENHANCED GLOW PULSE ======= */
            @keyframes glowPulse {
                0%, 100% { opacity: 0.4; filter: blur(60px); }
                50% { opacity: 0.7; filter: blur(80px); }
            }

            .globe-glow {
                animation: glowPulse 6s ease-in-out infinite;
            }

            /* ======= ENHANCED STAT CARDS ======= */
            .stat-card::after {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: conic-gradient(from 0deg, transparent, rgba(212,168,67,0.03), transparent, transparent);
                animation: statRotate 8s linear infinite;
                opacity: 0;
                transition: opacity 0.5s;
            }

            .stat-card:hover::after {
                opacity: 1;
            }

            @keyframes statRotate {
                to { transform: rotate(360deg); }
            }

            /* ======= ABOUT PARALLAX FLOAT ======= */
            @keyframes floatBadge {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-10px); }
            }

            .about-badge-1 {
                animation: floatBadge 4s ease-in-out infinite;
            }

            .about-badge-2 {
                animation: floatBadge 4s ease-in-out infinite 2s;
            }

            /* ======= ENHANCED TESTIMONIAL CARDS ======= */
            .testimonial-card::before {
                content: '';
                position: absolute;
                top: 0; left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
                opacity: 0;
                transition: opacity 0.5s;
            }

            .testimonial-card:hover::before {
                opacity: 1;
            }

            /* ======= FOOTER SOCIAL GLOW ======= */
            .footer-social a::before {
                content: '';
                position: absolute;
                inset: -4px;
                border-radius: 50%;
                background: rgba(212,168,67,0.15);
                opacity: 0;
                filter: blur(8px);
                transition: opacity 0.3s;
                z-index: -1;
            }

            .footer-social a {
                position: relative;
            }

            .footer-social a:hover::before {
                opacity: 1;
            }

            /* ======= PAGE LOADED STATE ======= */
            body.loaded .hero-content {
                animation: heroReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
            }

            @keyframes heroReveal {
                from {
                    opacity: 0;
                    transform: translateY(40px);
                    filter: blur(10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                    filter: blur(0px);
                }
            }

            body.loaded .scroll-indicator {
                animation: fadeInUp 1s 2s both;
            }

            /* ======= NAV LINK GLOW ON HOVER ======= */
            .nav-links a::before {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 50%;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: #d4a843;
                opacity: 0;
                transform: translateX(-50%);
                transition: opacity 0.3s;
            }

            .nav-links a:hover::before {
                opacity: 1;
            }

            .nav-links a:hover::after {
                background: linear-gradient(90deg, transparent, #d4a843, transparent);
            }

            /* ======= ENHANCED PORTFOLIO TRANSITIONS ======= */
            .portfolio-item {
                transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .portfolio-item.filtered-out {
                opacity: 0 !important;
                transform: scale(0.8) !important;
                pointer-events: none;
                position: absolute;
                visibility: hidden;
            }

            .portfolio-item.filtered-in {
                opacity: 1;
                transform: scale(1);
            }

            /* ======= ENHANCED PROCESS DOTS ======= */
            .process-dot {
                position: relative;
            }

            .process-step.visible .process-dot::before {
                content: '';
                position: absolute;
                inset: -6px;
                border-radius: 50%;
                border: 1px solid rgba(212,168,67,0.15);
                animation: processPulse 2s ease-in-out infinite;
            }

            @keyframes processPulse {
                0%, 100% { transform: scale(1); opacity: 1; }
                50% { transform: scale(1.3); opacity: 0; }
            }

            /* ======= SECTION DIVIDERS ======= */
            .section-services::before,
            .section-portfolio::before,
            .section-process::before,
            .section-testimonials::before,
            .section-cta::before {
                content: '';
                position: absolute;
                top: 0; left: 0;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
            }

            .section-portfolio::before,
            .section-process::before,
            .section-testimonials::before,
            .section-cta::before {
                position: absolute;
            }

            .section-portfolio,
            .section-process,
            .section-testimonials,
            .section-cta {
                position: relative;
            }

            /* ======= RESPONSIVE ======= */
            @media (max-width: 1024px) {
                .hero {
                    justify-content: center;
                    padding: 0 32px;
                }

                .hero-content {
                    text-align: center;
                    max-width: 700px;
                }

                .hero p {
                    margin: 0 auto 40px;
                }

                .hero-buttons {
                    justify-content: center;
                }

                #globeCanvas {
                    right: -30%;
                    opacity: 0.4;
                }

                .globe-glow, .globe-glow-ring {
                    right: -30%;
                    opacity: 0.4;
                }

                .services-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .footer-top {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 40px;
                }

                .portfolio-wide {
                    grid-column: span 1;
                }

                .about-wrapper {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }

                .tech-grid {
                    grid-template-columns: repeat(3, 1fr);
                }

                .fcs-content {
                    flex-direction: column;
                    text-align: center;
                }
            }

            @media (max-width: 768px) {
                nav {
                    padding: 16px 24px;
                }

                .nav-links {
                    display: none;
                }

                .hamburger {
                    display: flex;
                }

                .nav-login {
                    display: none;
                }

                .hero {
                    padding: 0 24px;
                }

                .hero-content {
                    padding: 0;
                }

                .section-services {
                    padding: 80px 24px;
                }

                .services-grid {
                    grid-template-columns: 1fr;
                    gap: 16px;
                }

                .stats-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 16px;
                }

                .stats-section { padding: 60px 24px; }

                .section-about { padding: 80px 24px; }
                .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
                .about-features { grid-template-columns: 1fr; }
                .about-float-badge { position: relative; top: auto; left: auto; right: auto; bottom: auto; display: inline-flex; }

                .section-portfolio { padding: 80px 24px; }
                .portfolio-grid { grid-template-columns: 1fr; }
                .portfolio-wide { grid-column: span 1; }
                .portfolio-img { height: 280px; }
                .portfolio-filter { gap: 6px; }
                .pf-btn { padding: 8px 16px; font-size: 12px; }

                .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
                .tech-item { padding: 20px 10px; }
                .section-tech { padding: 60px 24px; }

                .section-process { padding: 80px 24px; }

                .section-testimonials { padding: 80px 24px; }
                .testimonial-card { min-width: 300px; }

                .section-cta { padding: 80px 24px; }
                .cta-content h2 { font-size: 28px; }

                .footer-cta-strip { padding: 32px 24px; }
                .fcs-content { flex-direction: column; text-align: center; }
                .footer-newsletter { flex-direction: column; align-items: stretch; }
                .fn-input { width: 100%; }

                .footer-top {
                    grid-template-columns: 1fr;
                    padding: 40px 24px;
                    gap: 32px;
                }

                .footer-bottom {
                    flex-direction: column;
                    gap: 16px;
                    padding: 24px;
                    text-align: center;
                }
            }


/* ==========================================================================
   PAGE HERO (shared across sub-pages)
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 60px 100px;
}
.page-hero-compact { min-height: 60vh; }
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(212,168,67,0.08) 0%, transparent 60%);
}
.page-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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-content h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff 30%, #d4a843 100%);
    -webkit-background-clip: text;

    background-clip: text;
    margin-bottom: 24px;
}
.page-hero-desc {
    font-size: clamp(16px, 1.3vw, 20px);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.page-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.page-hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #d4a843, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================================================
   SERVICES DETAIL PAGE (hizmetler.html)
   ========================================================================== */
.services-detail-section { padding: 100px 60px; }
.service-detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.sd-reverse { flex-direction: row-reverse; }
.sd-visual { flex: 0 0 420px; }
.sd-card-visual {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s;
}
.sd-card-visual:hover { border-color: rgba(212,168,67,0.3); }
.sd-icon-big { font-size: 64px; margin-bottom: 20px; display: block; }
.sd-float-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(212,168,67,0.1);
    color: #d4a843;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212,168,67,0.2);
}
.sd-content { flex: 1; }
.sd-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    margin-bottom: -10px;
}
.sd-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}
.sd-desc {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.sd-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sd-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}
.sd-feat-icon { color: #d4a843; font-size: 18px; flex-shrink: 0; }
.sd-tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sd-tech-tags span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* PRICING */
.pricing-section { padding: 120px 60px; text-align: center; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 60px auto 0;
}
.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: left;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.5s;
}
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.12); }
.pricing-popular {
    border-color: rgba(212,168,67,0.4);
    background: rgba(212,168,67,0.03);
}
.pricing-popular:hover { border-color: rgba(212,168,67,0.6); }
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pricing-tier {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-size: 20px; color: #d4a843; font-weight: 600; }
.pricing-amount { font-size: 48px; font-weight: 800; }
.pricing-period { font-size: 14px; color: rgba(255,255,255,0.3); margin-left: 4px; }
.pricing-desc { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); }
.pf-check { color: #d4a843; }
.pf-x { color: rgba(255,255,255,0.15); }
.pf-disabled { color: rgba(255,255,255,0.2); }
.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    text-align: center;
    text-decoration: none;
}
.btn-pricing:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.btn-pricing-gold {
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    border-color: transparent;
}
.btn-pricing-gold:hover { opacity: 0.9; transform: translateY(-2px); }

/* FAQ ACCORDION */
.faq-section { padding: 120px 60px; }
.contact-faq-section { padding: 80px 60px 120px; }
.faq-grid { max-width: 800px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.active { border-color: rgba(212,168,67,0.3); }
.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    font-family: 'Inter', sans-serif;
}
.faq-icon {
    font-size: 22px;
    color: #d4a843;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1);
}
.faq-answer p {
    padding: 0 28px 24px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    font-size: 15px;
}

/* ==========================================================================
   PORTFOLIO PAGE (projeler.html)
   ========================================================================== */
.portfolio-page-section { padding: 40px 60px 120px; }
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.pf-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    font-family: 'Inter', sans-serif;
}
.pf-btn:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
.pf-btn.active {
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    border-color: transparent;
    font-weight: 600;
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.case-study-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), border-color 0.5s;
}
.case-study-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.3); }
.case-study-card.cs-wide { grid-column: span 2; }
.cs-wide .cs-image { height: 360px; }
.cs-image {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cs-image-content { position: relative; z-index: 2; padding: 30px; width: 100%; }
.cs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 3;
}
.case-study-card:hover .cs-overlay { opacity: 1; }
.cs-view-btn {
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.case-study-card:hover .cs-view-btn { transform: translateY(0); }

/* Mock Browser */
.cs-mock-browser {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
}
.cs-wide .cs-mock-browser { max-width: 600px; }
.cs-browser-dots { display: flex; gap: 6px; padding: 10px 14px; }
.cs-browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.cs-browser-bar { height: 1px; background: rgba(255,255,255,0.08); }
.cs-browser-body { padding: 16px; }
.cs-mock-hero { height: 40px; background: rgba(255,255,255,0.06); border-radius: 6px; margin-bottom: 12px; }
.cs-mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cs-mock-grid div { height: 30px; background: rgba(255,255,255,0.04); border-radius: 4px; }
.cs-mock-chart { height: 80px; background: rgba(255,255,255,0.06); border-radius: 6px; }
.cs-mock-sidebar { width: 30%; height: 80px; background: rgba(255,255,255,0.04); border-radius: 6px; margin-top: 8px; }
.cs-mock-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cs-mock-products div { height: 50px; background: rgba(255,255,255,0.05); border-radius: 6px; }

/* Mock Phone */
.cs-mock-phone {
    width: 160px;
    height: 300px;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 8px;
}
.cs-phone-notch {
    width: 60px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 8px auto 12px;
}
.cs-phone-screen { padding: 0 8px; }
.cs-phone-header { height: 24px; background: rgba(255,255,255,0.06); border-radius: 6px; margin-bottom: 10px; }
.cs-phone-card { height: 50px; background: rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 8px; }
.cs-phone-nav {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
}
.cs-phone-nav span { width: 20px; height: 20px; background: rgba(255,255,255,0.08); border-radius: 50%; }

/* Mock Brand */
.cs-mock-brand { text-align: center; padding: 20px; }
.cs-brand-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #533483, #e94560);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}
.cs-brand-colors { display: flex; justify-content: center; gap: 8px; }
.cs-brand-colors span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); }

/* Case Study Info */
.cs-info { padding: 32px; }
.cs-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cs-category {
    background: rgba(212,168,67,0.1);
    color: #d4a843;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cs-year { font-size: 12px; color: rgba(255,255,255,0.3); }
.cs-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.cs-info p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.cs-tags span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}
.cs-results { display: flex; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.cs-result { text-align: center; }
.cs-result strong { display: block; font-size: 18px; font-weight: 700; color: #d4a843; }
.cs-result small { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Load More */
.load-more-wrapper { text-align: center; padding: 60px 0 0; }
.btn-load-more {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s;
    font-family: 'Inter', sans-serif;
}
.btn-load-more:hover { background: rgba(255,255,255,0.08); border-color: rgba(212,168,67,0.3); }

/* Clients Marquee */
.clients-section { padding: 120px 0; overflow: hidden; }
.clients-marquee { overflow: hidden; margin-top: 60px; }
.clients-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.client-logo {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    white-space: nowrap;
    letter-spacing: 2px;
    transition: color 0.4s;
}
.client-logo:hover { color: rgba(212,168,67,0.5); }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT PAGE (hakkimizda.html)
   ========================================================================== */
/* Story Section */
.about-story-section { padding: 120px 60px; }
.about-story-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-story-visual { flex: 0 0 420px; }
.about-story-img { position: relative; }
.about-story-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(212,168,67,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-story-placeholder span {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}
.about-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.about-story-float-1, .about-story-float-2 {
    position: absolute;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(12px);
}
.about-story-float-1 { top: -20px; right: -30px; }
.about-story-float-2 { bottom: -20px; left: -30px; }
.about-story-float-1 strong, .about-story-float-2 strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #d4a843;
}
.about-story-float-1 small, .about-story-float-2 small {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-story-content { flex: 1; }
.about-story-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 30%, #d4a843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-story-lead { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 20px; }
.about-story-content p { color: rgba(255,255,255,0.45); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.as-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #d4a843;
}
.as-stat span { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Values */
.values-section { padding: 120px 60px; background: rgba(255,255,255,0.01); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 60px auto 0;
}
.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.5s;
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.3); }
.value-icon { font-size: 40px; margin-bottom: 20px; }
.value-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
}
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.value-card p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; }

/* Team */
.team-section { padding: 120px 60px; }
.section-sub { color: rgba(255,255,255,0.4); font-size: 16px; margin-top: 12px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 60px auto 0;
}
.team-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.5s;
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.3); }
.team-photo { position: relative; width: 100px; height: 100px; margin: 0 auto 20px; }
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}
.team-social-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s;
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
    color: #d4a843;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
}
.team-social-overlay a:hover { transform: scale(1.2); }
.team-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: #d4a843; display: block; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* Timeline */
.timeline-section { padding: 120px 60px; background: rgba(255,255,255,0.01); }
.timeline-wrapper {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 40px;
}
.timeline-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212,168,67,0.5), rgba(212,168,67,0.05));
}
.timeline-item {
    position: relative;
    padding: 0 0 48px 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4a843;
    border: 3px solid #000;
    z-index: 2;
}
.timeline-date {
    font-size: 13px;
    font-weight: 700;
    color: #d4a843;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.timeline-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; }

/* Awards */
.awards-section { padding: 120px 60px; }
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 60px auto 0;
}
.award-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.5s;
    position: relative;
}
.award-card:hover { transform: translateY(-6px); border-color: rgba(212,168,67,0.3); }
.award-icon { font-size: 36px; margin-bottom: 16px; }
.award-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.award-card p { font-size: 13px; color: rgba(255,255,255,0.4); }
.award-year {
    font-size: 11px;
    color: #d4a843;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

/* ==========================================================================
   CONTACT PAGE (iletisim.html)
   ========================================================================== */
.contact-section { padding: 40px 60px 120px; }
.contact-wrapper {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-info-side { flex: 0 0 380px; display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.4s;
}
.contact-info-card:hover { border-color: rgba(212,168,67,0.3); }
.ci-icon { font-size: 28px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.ci-sub { font-size: 12px !important; color: rgba(255,255,255,0.3) !important; margin-top: 4px; }
.ci-social-links { display: flex; flex-direction: column; gap: 6px; }
.ci-social-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.ci-social-links a:hover { color: #d4a843; }

/* Map */
.contact-map {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
}
.contact-map-inner {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.map-grid-bg {
    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: 30px 30px;
}
.map-overlay-label {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.map-overlay-label span { font-size: 24px; }
.map-overlay-label strong { font-size: 14px; }
.map-overlay-label small { font-size: 11px; color: rgba(255,255,255,0.4); }
.map-dot { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(212,168,67,0.4); }
.map-dot-1 { top: 30%; left: 20%; }
.map-dot-2 { top: 60%; right: 25%; }
.map-dot-3 { bottom: 20%; left: 45%; }
.map-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.2);
    animation: mapPulse 3s ease-in-out infinite;
}
@keyframes mapPulse {
    0%, 100% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Contact Form */
.contact-form-side { flex: 1; }
.contact-form-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 48px 40px;
}
.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.cf-desc { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 32px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 20px; }
.cf-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.cf-group label span { color: #d4a843; }
.cf-group input,
.cf-group select,
.cf-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.4s, background 0.4s;
    outline: none;
    box-sizing: border-box;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: rgba(212,168,67,0.5);
    background: rgba(255,255,255,0.05);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.cf-group select { appearance: none; cursor: pointer; }
.cf-group select option { background: #111; color: #fff; }
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-error {
    display: block;
    font-size: 12px;
    color: #f43f5e;
    margin-top: 6px;
    min-height: 18px;
}
.cf-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.4s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.cf-submit:hover { opacity: 0.9; transform: translateY(-2px); }
.cf-submit-loading, .cf-submit-success { display: none; align-items: center; justify-content: center; gap: 8px; }
.cf-submit.loading .cf-submit-text { display: none; }
.cf-submit.loading .cf-submit-loading { display: flex; }
.cf-submit.success .cf-submit-text { display: none; }
.cf-submit.success .cf-submit-loading { display: none; }
.cf-submit.success .cf-submit-success { display: flex; }
.cf-submit.success { background: linear-gradient(135deg, #10b981, #059669); }
.cf-spinner {
    animation: cfSpin 1s linear infinite;
}
@keyframes cfSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   BLOG PAGE (blog.html)
   ========================================================================== */
/* Featured Post */
.blog-featured-section { padding: 0 60px 60px; }
.blog-featured-card {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    transition: border-color 0.5s;
}
.blog-featured-card:hover { border-color: rgba(212,168,67,0.3); }
.bf-image {
    flex: 0 0 50%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.bf-image-content { position: relative; z-index: 2; padding: 40px; }
.bf-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}
.bf-mock-code {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    font-family: monospace;
    font-size: 13px;
}
.bf-code-line { margin-bottom: 8px; color: rgba(255,255,255,0.5); }
.bf-kw { color: #c792ea; }
.bf-str { color: #c3e88d; }
.bf-fn { color: #82aaff; }
.bf-content { flex: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.bf-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.bf-category {
    background: rgba(212,168,67,0.1);
    color: #d4a843;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bf-date, .bf-read { font-size: 12px; color: rgba(255,255,255,0.3); }
.bf-content h2 { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 14px; }
.bf-content p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.bf-author { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.bf-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.bf-author strong { font-size: 14px; display: block; }
.bf-author small { font-size: 12px; color: rgba(255,255,255,0.4); }
.bf-read-btn {
    color: #d4a843;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: letter-spacing 0.3s;
}
.bf-read-btn:hover { letter-spacing: 1px; }

/* Blog Filter & Grid */
.blog-section { padding: 0 60px 120px; }
.blog-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.blog-filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Inter', sans-serif;
}
.blog-filter-btn:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
.blog-filter-btn.active {
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    border-color: transparent;
    font-weight: 600;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.5s;
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.3); }
.bc-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bc-image-inner { position: relative; z-index: 2; padding: 20px; }
.bc-content { padding: 28px; }
.bc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bc-category {
    background: rgba(212,168,67,0.1);
    color: #d4a843;
    padding: 3px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bc-date { font-size: 12px; color: rgba(255,255,255,0.3); }
.bc-content h3 { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.bc-content p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.bc-footer { display: flex; justify-content: space-between; align-items: center; }
.bc-read-time { font-size: 12px; color: rgba(255,255,255,0.25); }
.bc-link { color: #d4a843; text-decoration: none; font-size: 13px; font-weight: 600; transition: letter-spacing 0.3s; }
.bc-link:hover { letter-spacing: 1px; }

/* Blog Mock Elements */
.bc-mock-ui { display: flex; align-items: center; gap: 16px; }
.bc-ui-circle { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.bc-ui-lines { display: flex; flex-direction: column; gap: 6px; }
.bc-ui-lines span { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); }
.bc-ui-lines span:nth-child(1) { width: 80px; }
.bc-ui-lines span:nth-child(2) { width: 60px; }
.bc-ui-lines span:nth-child(3) { width: 40px; }
.bc-mock-terminal {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 16px;
    font-family: monospace;
    font-size: 12px;
}
.bc-term-line { color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.bc-term-success { color: #10b981; }
.bc-mock-chart-sm { display: flex; align-items: flex-end; gap: 8px; height: 70px; }
.bc-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(212,168,67,0.3), rgba(212,168,67,0.1));
    border-radius: 4px 4px 0 0;
}
.bc-mock-diagram { display: flex; align-items: center; gap: 8px; }
.bc-node { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.12); }
.bc-node-line { width: 20px; height: 2px; background: rgba(255,255,255,0.08); }
.bc-mock-palette { display: flex; gap: 10px; }
.bc-color { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); }
.bc-mock-perf { display: flex; align-items: center; justify-content: center; }
.bc-perf-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bc-perf-circle span { font-size: 22px; font-weight: 800; color: #10b981; }

/* Blog Newsletter */
.blog-newsletter-section { padding: 80px 60px; }
.bn-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 60px 48px;
}
.bn-icon { font-size: 48px; margin-bottom: 20px; }
.bn-wrapper h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.bn-wrapper p { color: rgba(255,255,255,0.45); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.bn-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.bn-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}
.bn-input:focus { border-color: rgba(212,168,67,0.5); }
.bn-input::placeholder { color: rgba(255,255,255,0.2); }
.bn-btn {
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.bn-btn:hover { opacity: 0.9; }
.bn-note { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 16px; }


/* ==========================================================================
   SUB-PAGE RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .page-hero { padding: 140px 40px 80px; }
    .service-detail-row { gap: 40px; }
    .sd-visual { flex: 0 0 320px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .case-studies-grid { grid-template-columns: 1fr; }
    .case-study-card.cs-wide { grid-column: span 1; }
    .about-story-wrapper { flex-direction: column; gap: 40px; }
    .about-story-visual { flex: unset; width: 100%; max-width: 420px; margin: 0 auto; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { flex-direction: column; }
    .contact-info-side { flex: unset; }
    .blog-featured-card { flex-direction: column; }
    .bf-image { min-height: 260px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 24px 60px; min-height: 60vh; }
    .page-hero-compact { min-height: 50vh; }
    .page-hero-content h1 { font-size: clamp(36px, 10vw, 56px); }
    .services-detail-section { padding: 60px 24px; }
    .service-detail-row { flex-direction: column !important; gap: 32px; padding: 48px 0; }
    .sd-visual { flex: unset; width: 100%; }
    .pricing-section { padding: 80px 24px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .faq-section, .contact-faq-section { padding: 80px 24px; }
    .portfolio-page-section { padding: 24px 24px 80px; }
    .about-story-section { padding: 80px 24px; }
    .about-story-stats { grid-template-columns: repeat(2, 1fr); }
    .values-section { padding: 80px 24px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-section { padding: 80px 24px; }
    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .timeline-section { padding: 80px 24px; }
    .awards-section { padding: 80px 24px; }
    .awards-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .contact-section { padding: 24px 24px 80px; }
    .contact-form-card { padding: 32px 24px; }
    .cf-row { grid-template-columns: 1fr; }
    .blog-featured-section { padding: 0 24px 40px; }
    .bf-content { padding: 32px 24px; }
    .blog-section { padding: 0 24px 80px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-newsletter-section { padding: 60px 24px; }
    .bn-wrapper { padding: 40px 24px; }
    .bn-form { flex-direction: column; }
    .clients-section { padding: 80px 0; }
}

/* ============================================
   HERO ENHANCEMENTS - Particles, Orbs, Trust
   ============================================ */

/* Hero Particles Canvas */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Orbs */
.page-hero-orbs {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #d4a843, transparent 70%);
    top: -100px; right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #6366f1, transparent 70%);
    bottom: -80px; left: -80px;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #ec4899, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-orb-3 {
    animation-name: orbFloat3;
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-50%, -50%) translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-50%, -50%) translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(-50%, -50%) translate(20px, 20px) scale(1.02); }
}

/* Hero Stats Strip */
.hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.hero-stat-item {
    text-align: center;
    padding: 0 32px;
}

.hero-stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* Hero Trust Row */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.hero-trust-badge:hover {
    background: rgba(212,168,67,0.08);
    border-color: rgba(212,168,67,0.2);
    color: #f0d78c;
    transform: translateY(-2px);
}

.hero-trust-badge .badge-icon {
    font-size: 1rem;
}

/* ============================================
   PROJECT PROCESS SECTION
   ============================================ */
.project-process-section {
    padding: 120px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.pp-timeline {
    display: flex;
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.pp-step {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 0 16px;
}

.pp-step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d4a843;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pp-step-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
    position: absolute;
    top: 85px;
    left: 50%;
    width: 100%;
    z-index: 0;
}

.pp-step:last-child .pp-step-line { display: none; }

.pp-step-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}

.pp-step-content:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,168,67,0.15);
    transform: translateY(-8px);
}

.pp-step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pp-step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.pp-step-content p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pp-duration {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4a843;
    padding: 4px 12px;
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 100px;
}

/* ============================================
   PROJECT STATS BANNER
   ============================================ */
.project-stats-banner {
    padding: 80px;
    background: linear-gradient(135deg, rgba(212,168,67,0.04), rgba(212,168,67,0.01));
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.psb-inner {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.psb-item {
    text-align: center;
}

.psb-item strong {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.psb-item span {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   PROJECT TESTIMONIAL
   ============================================ */
.project-testimonial {
    padding: 120px 80px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pt-wrapper {
    position: relative;
}

.pt-quote-icon {
    font-size: 8rem;
    font-family: Georgia, serif;
    line-height: 0.5;
    background: linear-gradient(135deg, #d4a843, #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.project-testimonial blockquote {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
}

.pt-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.pt-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
}

.pt-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.pt-author span {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

.pt-stars {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #d4a843;
    letter-spacing: 4px;
}

/* ============================================
   TECH ORBIT SECTION
   ============================================ */
.tech-stack-section {
    padding: 120px 80px;
    text-align: center;
}

.tech-orbit {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 60px auto 0;
}

.tech-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}

.tech-orbit-ring-1 {
    width: 100%; height: 100%;
    top: 0; left: 0;
    animation: orbitSpin 40s linear infinite;
}

.tech-orbit-ring-2 {
    width: 70%; height: 70%;
    top: 15%; left: 15%;
    animation: orbitSpin 30s linear infinite reverse;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tech-orbit-item {
    position: absolute;
    top: 50%; left: 50%;
    width: 80px; height: 80px;
    margin: -40px 0 0 -40px;
    transform: rotate(var(--angle)) translateX(calc(min(250px, 35vw))) rotate(calc(-1 * var(--angle)));
}

.tech-orbit-ring-2 .tech-orbit-item {
    transform: rotate(var(--angle)) translateX(calc(min(175px, 24vw))) rotate(calc(-1 * var(--angle)));
}

.tech-orbit-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    animation: counterSpin 40s linear infinite;
}

.tech-orbit-ring-2 .tech-orbit-item span {
    animation: counterSpin 30s linear infinite reverse;
}

@keyframes counterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.tech-orbit-item span:hover {
    background: rgba(212,168,67,0.1);
    border-color: rgba(212,168,67,0.3);
    color: #f0d78c;
    transform: scale(1.15);
}

.tech-orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a843, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 0 60px rgba(212,168,67,0.3);
    z-index: 2;
}

/* ============================================
   CULTURE SECTION
   ============================================ */
.culture-section {
    padding: 120px 80px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.culture-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}

.culture-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,168,67,0.15);
    transform: translateY(-6px);
}

.culture-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 24px;
    z-index: 0;
}

.culture-card-large {
    grid-column: span 2;
}

.culture-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.culture-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.culture-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .pp-timeline {
        flex-direction: column;
        gap: 24px;
    }
    .pp-step-line { display: none; }
    .pp-step { text-align: left; padding: 0; }
    .pp-step-content {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 24px;
    }
    .pp-step-icon { margin-bottom: 0; flex-shrink: 0; }
    .project-process-section { padding: 80px 40px; }
    .psb-inner { gap: 40px; flex-wrap: wrap; }
    .project-stats-banner { padding: 60px 40px; }
    .project-testimonial { padding: 80px 40px; }
    .tech-orbit { width: 350px; height: 350px; }
    .tech-stack-section { padding: 80px 40px; }
    .culture-section { padding: 80px 40px; }
    .culture-grid { grid-template-columns: 1fr 1fr; }
    .culture-card-large { grid-column: span 2; }
}

@media (max-width: 768px) {
    .hero-stats-strip { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-trust-row { gap: 10px; }
    .hero-trust-badge { padding: 6px 14px; font-size: 0.75rem; }
    .hero-orb-1 { width: 250px; height: 250px; }
    .hero-orb-2 { width: 200px; height: 200px; }
    .hero-orb-3 { width: 150px; height: 150px; }
    .psb-inner { gap: 24px; }
    .psb-item strong { font-size: 2.2rem; }
    .project-testimonial blockquote { font-size: 1.05rem; }
    .tech-orbit { width: 280px; height: 280px; }
    .tech-orbit-item { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
    .tech-orbit-item span { width: 60px; height: 60px; font-size: 0.65rem; border-radius: 14px; }
    .culture-grid { grid-template-columns: 1fr; }
    .culture-card-large { grid-column: span 1; }
}

@media (max-width: 480px) {
    .project-process-section { padding: 60px 24px; }
    .project-stats-banner { padding: 40px 24px; }
    .project-testimonial { padding: 60px 24px; }
    .tech-stack-section { padding: 60px 24px; }
    .culture-section { padding: 60px 24px; }
    .tech-orbit { width: 240px; height: 240px; }
    .culture-card { padding: 28px 20px; }
}

/* ============================================
   CONTACT PROCESS STRIP
   ============================================ */
.contact-process-strip {
    padding: 80px;
    background: linear-gradient(135deg, rgba(212,168,67,0.03), transparent);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cps-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.cps-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cps-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #d4a843;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cps-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cps-step p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.cps-arrow {
    color: rgba(212,168,67,0.3);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   OFFICE LOCATIONS
   ============================================ */
.office-locations {
    padding: 120px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.office-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
}

.office-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 28px;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
}

.office-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,168,67,0.15);
    transform: translateY(-6px);
}

.office-card-primary {
    background: rgba(212,168,67,0.03);
    border-color: rgba(212,168,67,0.1);
}

.office-card-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(212,168,67,0.1);
    color: #d4a843;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.office-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.office-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.office-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-meta span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   BLOG TOPICS
   ============================================ */
.blog-topics-section {
    padding: 120px 80px;
}

.blog-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bt-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
}

.bt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--bt-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bt-card:hover::before { opacity: 1; }

.bt-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: color-mix(in srgb, var(--bt-accent) 30%, transparent);
    transform: translateY(-6px);
}

.bt-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.bt-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.bt-card span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BLOG AUTHORS
   ============================================ */
.blog-authors-section {
    padding: 120px 80px;
}

.blog-authors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ba-card {
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 28px;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}

.ba-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,168,67,0.15);
    transform: translateY(-6px);
}

.ba-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
}

.ba-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.ba-role {
    display: block;
    font-size: 0.78rem;
    color: #d4a843;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ba-count {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    padding: 120px 80px;
    background: linear-gradient(180deg, rgba(212,168,67,0.02), transparent);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.wu-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 28px;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
}

.wu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(212,168,67,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.wu-card:hover::before { opacity: 1; }

.wu-card:hover {
    border-color: rgba(212,168,67,0.15);
    transform: translateY(-6px);
}

.wu-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(212,168,67,0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.wu-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.wu-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE - NEW CONTACT & BLOG SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .contact-process-strip { padding: 60px 40px; }
    .cps-inner { flex-wrap: wrap; gap: 24px; }
    .cps-arrow { display: none; }
    .cps-step { flex: 0 0 calc(50% - 12px); }
    .office-locations { padding: 80px 40px; }
    .office-grid { grid-template-columns: 1fr 1fr; }
    .office-card-primary { grid-column: span 2; }
    .blog-topics-section { padding: 80px 40px; }
    .blog-topics-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-authors-section { padding: 80px 40px; }
    .why-us-section { padding: 80px 40px; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .contact-process-strip { padding: 40px 24px; }
    .cps-step { flex: 0 0 100%; }
    .office-grid { grid-template-columns: 1fr; }
    .office-card-primary { grid-column: span 1; }
    .blog-topics-grid { grid-template-columns: 1fr 1fr; }
    .blog-authors-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .blog-topics-grid { grid-template-columns: 1fr; }
    .blog-topics-section { padding: 60px 24px; }
    .blog-authors-section { padding: 60px 24px; }
    .office-locations { padding: 60px 24px; }
    .why-us-section { padding: 60px 24px; }
}

/* Live Demo Iframe Styles for Portfolio */
.cs-live-demo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: #fff;
    border-radius: inherit;
}
.cs-live-demo iframe {
    width: 400%;
    height: 400%;
    transform: scale(0.25);
    transform-origin: 0 0;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}
.cs-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.cs-overlay {
    pointer-events: none;
}
.cs-view-btn {
    pointer-events: auto;
}

/* =========================================
   PREMIUM CSS ENHANCEMENTS
   ========================================= */

/* 1. Custom Scrollbar & Selection */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4a843;
}
::selection {
    background: #d4a843;
    color: #000;
}

/* 2. Enhanced Nav Link Hover */
.nav-links a::after {
    left: 50% !important;
    transform: translateX(-50%);
    width: 0;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.nav-links a:hover::after {
    width: 100% !important;
}

/* 3. Button Glow & Sweep Animation */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
    z-index: -1;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02) !important;
}

.btn-secondary, .btn-cta-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    border: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.btn-secondary:hover, .btn-cta-secondary:hover {
    box-shadow: inset 0 0 0 1px rgba(212,168,67,0.8), 0 0 20px rgba(212,168,67,0.2) !important;
    color: #d4a843 !important;
    background: rgba(212,168,67,0.05) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

/* 4. Animated Gradient Text to Hero H1 */
/* DISABLED @keyframes textShine {



DISABLED */
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.7) 25%, #d4a843 50%, rgba(255,255,255,0.7) 75%, #ffffff 100%) !important;
/* DISABLED textShine application




*/

/* 5. Upgrade Custom Cursor mix-blend-mode */
.cursor-dot {
    background: #d4a843 !important;
    mix-blend-mode: difference;
    z-index: 99999 !important;
}
.cursor-ring {
    border-color: rgba(212,168,67,0.8) !important;
    mix-blend-mode: difference;
    z-index: 99998 !important;
}
.cursor-ring.hover {
    background: rgba(212,168,67,0.2) !important;
}

/* 6. Improve Glassmorphism Depth */
nav {
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 -1px 0 rgba(255,255,255,0.02) !important;
}
.floating-card {
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}
.service-card, .case-study-card {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.05) !important;
}
/* ============================================
   HAKKIMIZDA PAGE
   ============================================ */
.about-story-section { padding: 120px 80px; }
.about-story-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box { position: relative; height: 500px; }
.about-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(212,168,67,0.03) 0px, rgba(212,168,67,0.03) 1px, transparent 1px, transparent 20px); border-radius: 20px; }
.about-img-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a2e, #16213e); border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 120px; color: rgba(212,168,67,0.2); font-weight: 800; }
.about-float-badge { position: absolute; background: rgba(15,15,25,0.95); border: 1px solid rgba(212,168,67,0.3); border-radius: 12px; padding: 16px 20px; backdrop-filter: blur(20px); text-align: center; }
.about-float-badge strong { display: block; font-size: 1.8rem; color: #d4a843; font-weight: 800; }
.about-float-badge small { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.about-badge-1 { bottom: 40px; left: -30px; }
.about-badge-2 { top: 60px; right: -30px; }
.about-story-content .section-tag { margin-bottom: 16px; }
.about-story-content h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 24px; }
.about-story-content p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.about-story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.ast-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px; }
.ast-item strong { display: block; font-size: 2.2rem; font-weight: 800; color: #d4a843; }
.ast-item span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.about-values-section { padding: 100px 80px; background: linear-gradient(180deg, transparent, rgba(212,168,67,0.02), transparent); }
.values-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px 28px; transition: all 0.4s ease; }
.value-card:hover { background: rgba(212,168,67,0.05); border-color: rgba(212,168,67,0.2); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.value-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.value-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.team-section { padding: 100px 80px; }
.team-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px 28px; text-align: center; transition: all 0.4s ease; }
.team-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; color: #fff; }
.team-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.team-card span { font-size: 0.8rem; color: #d4a843; display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.why-us-section { padding: 100px 80px; }
.why-us-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.why-us-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px; transition: all 0.3s; position: relative; overflow: hidden; }
.why-us-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #d4a843, transparent); opacity: 0; transition: opacity 0.3s; }
.why-us-item:hover::before { opacity: 1; }
.why-us-item:hover { transform: translateY(-4px); border-color: rgba(212,168,67,0.15); }
.wu-num { font-size: 3rem; font-weight: 900; color: rgba(212,168,67,0.15); margin-bottom: 16px; line-height: 1; }
.why-us-item h3 { font-size: 1.15rem; color: #fff; margin-bottom: 12px; }
.why-us-item p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-featured-section { padding: 80px; }
.blog-featured-card { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.blog-featured-visual { min-height: 400px; position: relative; }
.blog-featured-cat { position: absolute; top: 24px; left: 24px; background: rgba(212,168,67,0.9); color: #000; font-size: 0.75rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; }
.blog-featured-content { padding: 60px; background: rgba(255,255,255,0.02); display: flex; flex-direction: column; justify-content: center; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.blog-cat-badge { background: rgba(212,168,67,0.1); color: #d4a843; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(212,168,67,0.2); }
.blog-date, .blog-read { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.blog-featured-content h2 { font-size: clamp(1.5rem,3vw,2.2rem); line-height: 1.3; margin-bottom: 20px; }
.blog-featured-content p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; color: #d4a843; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: gap 0.3s; }
.blog-read-more:hover { gap: 14px; }

.blog-grid-section { padding: 80px; padding-top: 0; }
.blog-filter { max-width: 1200px; margin: 0 auto 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.blog-filter-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); padding: 8px 20px; border-radius: 20px; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.blog-filter-btn:hover, .blog-filter-btn.active { background: rgba(212,168,67,0.1); border-color: rgba(212,168,67,0.3); color: #d4a843; }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; transition: all 0.4s ease; }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.blog-card-img { height: 200px; position: relative; display: flex; align-items: flex-end; padding: 16px; }
.blog-card-cat { background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(10px); }
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; gap: 12px; margin-bottom: 14px; }
.blog-card-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.blog-card h3 { font-size: 1.05rem; line-height: 1.5; margin-bottom: 12px; color: #fff; }
.blog-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.blog-card-link { color: #d4a843; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: letter-spacing 0.3s; }
.blog-card-link:hover { letter-spacing: 1px; }
.blog-load-more { max-width: 1200px; margin: 48px auto 0; text-align: center; }
.btn-load-more { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); padding: 14px 36px; border-radius: 50px; font-family: inherit; font-size: 0.9rem; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; }
.btn-load-more:hover { background: rgba(212,168,67,0.08); border-color: rgba(212,168,67,0.3); color: #d4a843; }

.blog-topics-section { padding: 80px; background: linear-gradient(180deg, transparent, rgba(212,168,67,0.02), transparent); }
.blog-topics-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.blog-topic-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.3s; }
.blog-topic-card:hover { background: rgba(212,168,67,0.06); border-color: rgba(212,168,67,0.2); transform: translateY(-4px); }
.btc-icon { font-size: 2rem; margin-bottom: 12px; }
.blog-topic-card h3 { font-size: 0.9rem; color: #fff; margin-bottom: 6px; }
.blog-topic-card span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.blog-newsletter-section { padding: 80px; }
.bns-inner { max-width: 900px; margin: 0 auto; background: linear-gradient(135deg, rgba(212,168,67,0.06), rgba(212,168,67,0.02)); border: 1px solid rgba(212,168,67,0.15); border-radius: 24px; padding: 60px; display: flex; align-items: center; gap: 60px; }
.bns-content { flex: 1; }
.bns-content h2 { font-size: 1.8rem; margin-bottom: 12px; }
.bns-content p { color: rgba(255,255,255,0.6); }
.bns-form { display: flex; gap: 12px; flex-shrink: 0; }
.bns-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 20px; color: #fff; font-family: inherit; font-size: 0.9rem; width: 280px; outline: none; transition: border-color 0.3s; }
.bns-input:focus { border-color: rgba(212,168,67,0.5); }
.bns-btn { background: #d4a843; color: #0a0a0f; border: none; border-radius: 12px; padding: 14px 28px; font-family: inherit; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.bns-btn:hover { background: #f0d78c; transform: translateY(-2px); }


/* ============================================
   HIZMETLER PAGE
   ============================================ */
.services-detail-section { padding: 80px; }
.service-detail-block { max-width: 1200px; margin: 0 auto 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-detail-block.sd-reverse { direction: rtl; }
.service-detail-block.sd-reverse > * { direction: ltr; }
.sd-visual { border-radius: 24px; min-height: 360px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.sd-visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 24px); }
.sd-visual-icon { font-size: 5rem; opacity: 0.3; }
.sd-num { font-size: 0.75rem; font-weight: 700; color: #d4a843; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 16px; }
.sd-content h2 { font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom: 20px; }
.sd-content p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.sd-features { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 12px; }
.sd-features li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.sd-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #d4a843; flex-shrink: 0; }
.sd-cta { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.25); color: #d4a843; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; }
.sd-cta:hover { background: #d4a843; color: #0a0a0f; transform: translateX(4px); }

.pricing-section { padding: 100px 80px; background: linear-gradient(180deg, transparent, rgba(212,168,67,0.02), transparent); }
.pricing-grid { max-width: 1100px; margin: 60px auto 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.pricing-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 40px; position: relative; transition: all 0.4s; }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card-featured { background: rgba(212,168,67,0.04); border-color: rgba(212,168,67,0.25); box-shadow: 0 0 60px rgba(212,168,67,0.08); }
.pricing-badge { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; display: block; }
.pricing-featured-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #d4a843; color: #000; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-price { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.pricing-price span { font-size: 1.4rem; }
.pricing-price small { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.pricing-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 0.88rem; color: rgba(255,255,255,0.6); display: flex; gap: 10px; }

/* ============================================
   HIZMETLER PROCESS TIMELINE
   ============================================ */
.section-process { padding: 100px 80px; }
.process-timeline { max-width: 900px; margin: 60px auto 0; position: relative; }
.process-line { position: absolute; left: 23px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(180deg, #d4a843, rgba(212,168,67,0.1)); }
.process-step { display: flex; gap: 32px; margin-bottom: 56px; position: relative; }
.process-dot { width: 48px; height: 48px; border-radius: 50%; background: rgba(212,168,67,0.1); border: 2px solid rgba(212,168,67,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem; position: relative; z-index: 1; }
.pdot-icon { font-style: normal; }
.process-content { padding-top: 8px; }
.process-content h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.process-content p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.process-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.process-pills span { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; }

/* ============================================
   ILETISIM EXTENDED SECTIONS
   ============================================ */
.office-locations { padding: 80px; }
.office-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.office-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 36px; transition: all 0.3s; }
.office-card:hover { border-color: rgba(212,168,67,0.2); transform: translateY(-4px); }
.office-card-primary { background: rgba(212,168,67,0.04); border-color: rgba(212,168,67,0.15); }
.office-card-badge { display: inline-block; background: rgba(212,168,67,0.15); color: #d4a843; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.office-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.office-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
.office-meta { display: flex; flex-direction: column; gap: 8px; }
.office-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.contact-faq-section { padding: 80px; }
.faq-grid { max-width: 800px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(212,168,67,0.2); }
.faq-question { width: 100%; background: none; border: none; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; color: #fff; font-family: inherit; font-size: 0.95rem; font-weight: 500; cursor: pointer; text-align: left; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(212,168,67,0.1); display: flex; align-items: center; justify-content: center; color: #d4a843; font-size: 1.2rem; line-height: 1; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 22px; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ============================================
   PREMIUM GLOBAL ENHANCEMENTS
   ============================================ */
/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Page transition fade-in */
body { animation: pageFadeIn 0.6s ease; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Enhanced section headers */
.section-header { text-align: center; max-width: 700px; margin: 0 auto; }
.section-header h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.section-sub { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.7; margin-top: 16px; }

/* Golden divider accent */
.section-header::after { content: ''; display: block; width: 60px; height: 3px; background: linear-gradient(90deg, transparent, #d4a843, transparent); margin: 28px auto 0; border-radius: 3px; }

/* Better nav active state */
.nav-links a.active { color: #d4a843; position: relative; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: #d4a843; border-radius: 2px; }

/* Btn secondary polish */
.btn-secondary { display: inline-block; background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); padding: 14px 32px; border-radius: 50px; font-family: inherit; font-weight: 600; font-size: 0.92rem; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-secondary:hover { border-color: rgba(212,168,67,0.4); color: #d4a843; transform: translateY(-2px); }

/* Glowing CTA primary button */
.btn-cta-primary { background: linear-gradient(135deg, #d4a843, #c49130); box-shadow: 0 0 30px rgba(212,168,67,0.25); transition: all 0.3s !important; }
.btn-cta-primary:hover { box-shadow: 0 0 50px rgba(212,168,67,0.4) !important; transform: translateY(-3px) !important; }

/* Responsive fixes */
@media (max-width: 1024px) {
    .about-story-wrapper, .service-detail-block { grid-template-columns: 1fr; gap: 48px; }
    .service-detail-block.sd-reverse { direction: ltr; }
    .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
    .blog-topics-grid { grid-template-columns: repeat(3,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .office-grid { grid-template-columns: 1fr; }
    .bns-inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 768px) {
    .about-story-section, .about-values-section, .team-section, .why-us-section,
    .blog-featured-section, .blog-grid-section, .blog-topics-section, .blog-newsletter-section,
    .services-detail-section, .pricing-section, .section-process,
    .office-locations, .contact-faq-section { padding: 60px 24px; }
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-visual { min-height: 220px; }
    .blog-featured-content { padding: 32px 24px; }
    .blog-grid { grid-template-columns: 1fr; }
    .values-grid, .team-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .blog-topics-grid { grid-template-columns: repeat(2,1fr); }
    .about-badge-1, .about-badge-2 { display: none; }
    .bns-form { flex-direction: column; width: 100%; }
    .bns-input { width: 100%; }
    .about-story-stats { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   MILESTONES TIMELINE
   ============================================ */
.milestones-section { padding: 100px 80px; }
.timeline-wrapper { max-width: 900px; margin: 80px auto 0; position: relative; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, rgba(212,168,67,0.6), rgba(212,168,67,0.1)); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 60px; align-items: start; }
.ti-dot { width: 20px; height: 20px; border-radius: 50%; background: rgba(212,168,67,0.2); border: 3px solid #d4a843; margin: 0 auto; position: relative; z-index: 1; transition: all 0.3s; }
.ti-dot-active { background: #d4a843; box-shadow: 0 0 20px rgba(212,168,67,0.5); }
.timeline-item:hover .ti-dot { transform: scale(1.4); box-shadow: 0 0 20px rgba(212,168,67,0.4); }
.ti-content { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 32px; transition: all 0.3s; }
.ti-content:hover { border-color: rgba(212,168,67,0.2); background: rgba(212,168,67,0.03); transform: scale(1.02); }
.ti-left .ti-content { grid-column: 1; text-align: right; }
.ti-left .ti-dot { grid-column: 2; }
.ti-left .ti-content ~ * { grid-column: 3; }
.ti-right .ti-content { grid-column: 3; }
.ti-right .ti-dot { grid-column: 2; }
.ti-year { display: inline-block; background: rgba(212,168,67,0.1); color: #d4a843; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; letter-spacing: 1px; }
.ti-content h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.ti-content p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ============================================
   AWARDS
   ============================================ */
.awards-section { padding: 100px 80px; background: linear-gradient(180deg,transparent,rgba(212,168,67,0.02),transparent); }
.awards-grid { max-width: 1200px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.award-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; display: flex; align-items: center; gap: 20px; transition: all 0.4s; position: relative; overflow: hidden; }
.award-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,168,67,0.05), transparent); opacity: 0; transition: opacity 0.3s; }
.award-card:hover { border-color: rgba(212,168,67,0.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.award-card:hover::before { opacity: 1; }
.award-icon { font-size: 2.5rem; flex-shrink: 0; }
.award-year { font-size: 0.72rem; color: #d4a843; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.award-body h3 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
.award-body p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ============================================
   CULTURE / PERKS
   ============================================ */
.culture-perks-section { padding: 100px 80px; }
.perks-grid { max-width: 1200px; margin: 60px auto 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.perk-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px 32px; transition: all 0.4s; position: relative; overflow: hidden; }
.perk-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 100px; height: 100px; border-radius: 50%; background: rgba(212,168,67,0.05); transition: all 0.4s; }
.perk-card:hover { transform: translateY(-8px); border-color: rgba(212,168,67,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.perk-card:hover::after { transform: scale(2.5); background: rgba(212,168,67,0.08); }
.perk-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.perk-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.perk-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.join-us-banner { max-width: 1200px; margin: 0 auto; background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.02)); border: 1px solid rgba(212,168,67,0.2); border-radius: 20px; padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.jub-content h3 { font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.jub-content p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ============================================
   ADVANCED CSS ENHANCEMENTS
   ============================================ */

/* Magnetic hover effect on cards */
.value-card, .team-card, .award-card, .perk-card, .blog-card, .pricing-card {
    will-change: transform;
}

/* Gradient border on hover */
.ti-content:hover, .award-card:hover, .perk-card:hover {
    background-image: linear-gradient(rgba(10,10,15,1), rgba(10,10,15,1)), 
                      linear-gradient(135deg, #d4a843, rgba(212,168,67,0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Shimmer animation for badges */













/* Floating animation for hero elements */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.about-float-badge { animation: floatUp 4s ease-in-out infinite; }
.about-badge-2 { animation-delay: 2s; }

/* Stagger reveal for grid items */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.value-card:nth-child(1) { animation: fadeSlideUp 0.6s ease 0.1s both; }
.value-card:nth-child(2) { animation: fadeSlideUp 0.6s ease 0.2s both; }
.value-card:nth-child(3) { animation: fadeSlideUp 0.6s ease 0.3s both; }
.value-card:nth-child(4) { animation: fadeSlideUp 0.6s ease 0.4s both; }
.team-card:nth-child(1) { animation: fadeSlideUp 0.6s ease 0.1s both; }
.team-card:nth-child(2) { animation: fadeSlideUp 0.6s ease 0.2s both; }
.team-card:nth-child(3) { animation: fadeSlideUp 0.6s ease 0.3s both; }
.team-card:nth-child(4) { animation: fadeSlideUp 0.6s ease 0.4s both; }
.perk-card:nth-child(1) { animation: fadeSlideUp 0.5s ease 0.05s both; }
.perk-card:nth-child(2) { animation: fadeSlideUp 0.5s ease 0.1s both; }
.perk-card:nth-child(3) { animation: fadeSlideUp 0.5s ease 0.15s both; }
.perk-card:nth-child(4) { animation: fadeSlideUp 0.5s ease 0.2s both; }
.perk-card:nth-child(5) { animation: fadeSlideUp 0.5s ease 0.25s both; }
.perk-card:nth-child(6) { animation: fadeSlideUp 0.5s ease 0.3s both; }

/* Nav glassmorphism upgrade */
nav {
    background: rgba(10,10,15,0.75) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
}

/* Glowing section dividers */
.milestones-section, .awards-section, .culture-perks-section,
.blog-featured-section, .blog-topics-section, .services-detail-section {
    position: relative;
}
.milestones-section::before, .awards-section::before, .culture-perks-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
}

/* Pulsing dot for active timeline */
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(212,168,67,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(212,168,67,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,168,67,0); }
}
.ti-dot-active { animation: pulse-ring 2s ease infinite; }

/* Enhanced footer */
.main-footer { position: relative; }
.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
}

/* Scroll indicator pulse */
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #d4a843, transparent);
    margin: 8px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}
.page-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Highlight ring on section-tag */
.section-tag {
    display: inline-block;
    background: rgba(212,168,67,0.08);
    border: 1px solid rgba(212,168,67,0.2);
    color: #d4a843;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

/* Better back-to-top */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.3);
    color: #d4a843;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
    z-index: 900;
    backdrop-filter: blur(10px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #d4a843; color: #0a0a0f; box-shadow: 0 8px 24px rgba(212,168,67,0.4); transform: translateY(-4px); }

/* Responsive new sections */
@media (max-width: 1024px) {
    .timeline-line { left: 30px; transform: none; }
    .timeline-item { grid-template-columns: 60px 1fr; }
    .ti-left .ti-content, .ti-right .ti-content { grid-column: 2; text-align: left; }
    .ti-left .ti-dot, .ti-right .ti-dot { grid-column: 1; }
    .awards-grid { grid-template-columns: 1fr 1fr; }
    .perks-grid { grid-template-columns: 1fr 1fr; }
    .join-us-banner { flex-direction: column; text-align: center; padding: 40px; }
}
@media (max-width: 768px) {
    .milestones-section, .awards-section, .culture-perks-section { padding: 60px 24px; }
    .awards-grid { grid-template-columns: 1fr; }
    .perks-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CLIENTS MARQUEE
   ============================================ */
.clients-marquee-section { padding: 80px 0; overflow: hidden; }
.marquee-track-wrapper { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 0; animation: marqueeScroll 30s linear infinite; width: max-content; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track:hover { animation-play-state: paused; }
.client-logo-item { padding: 20px 48px; border-right: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); font-size: 1rem; font-weight: 700; letter-spacing: 1px; white-space: nowrap; transition: color 0.3s; cursor: default; }
.client-logo-item:hover { color: #d4a843; }

/* ============================================
   SERVICE STATS BANNER
   ============================================ */
.service-stats-banner { padding: 60px 80px; background: linear-gradient(135deg, rgba(212,168,67,0.04), transparent); border-top: 1px solid rgba(212,168,67,0.1); border-bottom: 1px solid rgba(212,168,67,0.1); margin: 0 0 80px; }
.ssb-grid { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 40px; }
.ssb-item { text-align: center; }
.ssb-num { display: block; font-size: 3.5rem; font-weight: 900; color: #d4a843; line-height: 1; margin-bottom: 8px; }
.ssb-item span { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 4px; }
.ssb-item small { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.ssb-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ============================================
   PREMIUM CSS POWER-UPS
   ============================================ */

/* Noise texture overlay on cards */
.service-card::after, .pricing-card::after, .about-story-wrapper::after { display: none; }

/* Spotlight hover effect on service detail blocks */
.sd-visual { transition: all 0.4s; }
.sd-visual:hover { box-shadow: 0 0 80px rgba(212,168,67,0.15); border-color: rgba(212,168,67,0.2); }

/* Number counter glow */
.ssb-num { text-shadow: 0 0 30px rgba(212,168,67,0.4); }
.ast-item strong { text-shadow: 0 0 20px rgba(212,168,67,0.3); }

/* Enhanced pricing card featured hover */
.pricing-card-featured:hover { box-shadow: 0 0 80px rgba(212,168,67,0.15), 0 20px 60px rgba(0,0,0,0.4) !important; }

/* Smooth link transitions */
a { transition: color 0.25s, opacity 0.25s; }
nav a:hover, .footer-col a:hover { color: #d4a843 !important; }

/* Process step active state */
.process-step:hover .process-dot { background: rgba(212,168,67,0.2); border-color: #d4a843; box-shadow: 0 0 20px rgba(212,168,67,0.4); transform: scale(1.15); }
.process-step:hover .process-content h3 { color: #d4a843; }

/* Timeline hover glow */
.ti-content:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

/* Award card animated border */
@keyframes borderGlow { 0%,100% { border-color: rgba(212,168,67,0.15); } 50% { border-color: rgba(212,168,67,0.4); } }
.award-card:nth-child(1) { animation: borderGlow 4s ease infinite 0s; }
.award-card:nth-child(2) { animation: borderGlow 4s ease infinite 0.6s; }
.award-card:nth-child(3) { animation: borderGlow 4s ease infinite 1.2s; }
.award-card:nth-child(4) { animation: borderGlow 4s ease infinite 1.8s; }
.award-card:nth-child(5) { animation: borderGlow 4s ease infinite 2.4s; }
.award-card:nth-child(6) { animation: borderGlow 4s ease infinite 3s; }

/* Blog card image shimmer overlay */
.blog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.8)); }

/* Perk card gradient hover fill */
.perk-card:hover { background: linear-gradient(135deg, rgba(212,168,67,0.06), rgba(10,10,15,0.95)); }

/* Section CTA super glow */
.section-cta { position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.12), transparent 70%); top: 50%; left: 30%; transform: translate(-50%,-50%); pointer-events: none; animation: ctaGlowPulse 5s ease-in-out infinite; }
.cta-glow-2 { left: 70%; animation-delay: 2.5s; }
@keyframes ctaGlowPulse { 0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); } }

/* Responsive */
@media (max-width: 768px) {
    .service-stats-banner { padding: 48px 24px; }
    .ssb-grid { flex-direction: column; gap: 32px; }
    .ssb-divider { width: 60px; height: 1px; }
    .clients-marquee-section { padding: 60px 0; }
}

/* ============================================
   BUTTON COLOR FIX — override broken text-fill
   ============================================ */

/* Reset webkit text-fill for ALL buttons and CTAs */
.btn-primary,
.btn-secondary,
.btn-cta-primary,
.btn-cta-secondary,
.btn-load-more,
.bns-btn,
.fn-btn,
.cf-submit,
.sd-cta,
.nav-login,
a.btn-primary,
a.btn-secondary,
a.btn-cta-primary,
a.btn-cta-secondary,
button {
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}

/* Restore btn-primary gold fill */
.btn-primary, a.btn-primary {
    background: linear-gradient(135deg, #d4a843, #c49130) !important;
    color: #0a0a0f !important;
    border: none !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s !important;
    box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.btn-primary:hover, a.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(212,168,67,0.45) !important;
}

/* Restore btn-secondary */
.btn-secondary, a.btn-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.8) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s !important;
}
.btn-secondary:hover, a.btn-secondary:hover {
    border-color: rgba(212,168,67,0.5) !important;
    color: #d4a843 !important;
}

/* Restore btn-cta-primary */
.btn-cta-primary, a.btn-cta-primary {
    background: linear-gradient(135deg, #d4a843, #c49130) !important;
    color: #0a0a0f !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(212,168,67,0.35);
    transition: all 0.3s !important;
}
.btn-cta-primary:hover, a.btn-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(212,168,67,0.5) !important;
}

/* Restore btn-cta-secondary */
.btn-cta-secondary, a.btn-cta-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s !important;
}
.btn-cta-secondary:hover, a.btn-cta-secondary:hover {
    border-color: rgba(212,168,67,0.4) !important;
    color: #d4a843 !important;
}

/* Restore nav-login button */
.nav-login {
    background: rgba(212,168,67,0.1) !important;
    color: #d4a843 !important;
    border: 1px solid rgba(212,168,67,0.25) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s !important;
}
.nav-login:hover {
    background: #d4a843 !important;
    color: #0a0a0f !important;
}

/* Restore sd-cta */
.sd-cta {
    background: rgba(212,168,67,0.1) !important;
    color: #d4a843 !important;
    border: 1px solid rgba(212,168,67,0.25) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s !important;
}
.sd-cta:hover {
    background: #d4a843 !important;
    color: #0a0a0f !important;
}

/* Keep shimmer ONLY on non-button elements */
.section-tag {
    background: rgba(212,168,67,0.08) !important;
    -webkit-text-fill-color: unset !important;
    color: #d4a843 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}
.award-year {
    -webkit-text-fill-color: #d4a843 !important;
    color: #d4a843 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}
.blog-cat-badge {
    background: rgba(212,168,67,0.1) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}
.pricing-featured-label {
    background: #d4a843 !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}

/* cf-submit (contact form button) */
.cf-submit {
    background: linear-gradient(135deg, #d4a843, #c49130) !important;
    color: #0a0a0f !important;
    border: none;
    border-radius: 12px;
    padding: 16px 36px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s !important;
    box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.cf-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(212,168,67,0.45) !important;
}

/* fn-btn (footer newsletter) */
.fn-btn {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s !important;
}
.fn-btn:hover {
    background: #f0d78c !important;
    transform: translateY(-2px) !important;
}

/* ============================================
   FINAL COMPREHENSIVE FIX — all color issues
   ============================================ */

/* 1. Completely remove textShine from h1/h2 — make them always visible */
.hero h1,
.page-hero-content h1,
.section-header h2,
h1, h2, h3, h4, h5, h6 {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    animation: none !important;
    color: #ffffff !important;
}

/* 2. Hero h1 — white text, bold */
.hero h1,
.page-hero-content h1 {
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

/* Keep gold span inside hero h1 */
.hero h1 span,
.page-hero-content h1 span,
.hero-highlight {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
}

/* 3. Section headers — white */
.section-header h2 { color: #ffffff !important; }
.about-story-content h2 { color: #ffffff !important; }

/* 4. Logo — gold spans preserved */
.logo { color: #ffffff !important; text-decoration: none !important; -webkit-text-fill-color: #ffffff !important; }
.logo span:first-child { color: #d4a843 !important; -webkit-text-fill-color: #d4a843 !important; }
.logo .co { color: rgba(255,255,255,0.4) !important; -webkit-text-fill-color: rgba(255,255,255,0.4) !important; }

/* 5. All buttons — definitive reset */
.btn-primary, a.btn-primary,
.btn-secondary, a.btn-secondary,
.btn-cta-primary, a.btn-cta-primary,
.btn-cta-secondary, a.btn-cta-secondary,
.nav-login, a.nav-login,
.sd-cta, a.sd-cta,
.cf-submit,
.fn-btn,
.bns-btn,
.btn-load-more,
button {
    -webkit-text-fill-color: unset !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* 6. Primary button — gold */
.btn-primary, a.btn-primary {
    background: linear-gradient(135deg, #d4a843, #b8860b) !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    font-weight: 700 !important;
}
.btn-primary:hover, a.btn-primary:hover {
    background: linear-gradient(135deg, #f0c040, #d4a843) !important;
    color: #0a0a0f !important;
}

/* 7. CTA primary — gold */
.btn-cta-primary, a.btn-cta-primary {
    background: linear-gradient(135deg, #d4a843, #b8860b) !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    font-weight: 700 !important;
}
.btn-cta-primary svg { stroke: #0a0a0f !important; }

/* 8. Secondary buttons — transparent + border */
.btn-secondary, a.btn-secondary,
.btn-cta-secondary, a.btn-cta-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}
.btn-secondary:hover, a.btn-secondary:hover,
.btn-cta-secondary:hover, a.btn-cta-secondary:hover {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    border-color: rgba(212,168,67,0.4) !important;
}

/* 9. Nav login */
.nav-login, a.nav-login {
    background: rgba(212,168,67,0.1) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    border: 1px solid rgba(212,168,67,0.3) !important;
}
.nav-login:hover {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}

/* 10. Nav links — white, hover gold */
.nav-links a {
    color: rgba(255,255,255,0.75) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.75) !important;
}
.nav-links a:hover, .nav-links a.active {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
}

/* 11. Section-tag — solid gold text, no clip */
.section-tag {
    display: inline-block !important;
    background: rgba(212,168,67,0.08) !important;
    border: 1px solid rgba(212,168,67,0.25) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 6px 18px !important;
    border-radius: 30px !important;
    margin-bottom: 20px !important;
}

/* 12. Submit / form buttons */
.cf-submit {
    background: linear-gradient(135deg, #d4a843, #b8860b) !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}
.fn-btn, .bns-btn {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}

/* 13. sd-cta */
.sd-cta, a.sd-cta {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
}
.sd-cta:hover {
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    background: #d4a843 !important;
}

/* 14. Pricing features list */
.pricing-features li {
    color: rgba(255,255,255,0.7) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
}

/* 15. General text reset for readability */
p, span, li, a, label, small, strong, em, blockquote {
    -webkit-text-fill-color: unset;
}
body { color: rgba(255,255,255,0.8) !important; }


/* ============================================
   ABSOLUTE FINAL OVERRIDE — v3
   En alta eklendi, en yüksek öncelik
   ============================================ */

/* Hero H1 — beyaz gradient, görünür */
.hero h1,
.page-hero-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 60%, #d4a843 100%) !important;
    background-size: 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: none !important;
    font-weight: 800 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Section h2 */
.section-header h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* ALL buttons — nuclear reset */
a.btn-primary, .btn-primary,
a.btn-cta-primary, .btn-cta-primary {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    opacity: 1 !important;
}
a.btn-primary:hover, .btn-primary:hover,
a.btn-cta-primary:hover, .btn-cta-primary:hover {
    background: #e8c060 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}

a.btn-secondary, .btn-secondary,
a.btn-cta-secondary, .btn-cta-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

.nav-login, a.nav-login {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    background: rgba(212,168,67,0.1) !important;
    border: 1px solid rgba(212,168,67,0.3) !important;
}

.cf-submit {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}
.fn-btn, .bns-btn {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}

/* Section tag — gold pill */
.section-tag {
    background: rgba(212,168,67,0.1) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    border: 1px solid rgba(212,168,67,0.25) !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* ============================================
   DEFINITIVE RESET — EVERYTHING FIXED
   Bu blok CSS dosyasının en sonunda,
   tüm kuralları geçersiz kılar.
   ============================================ */

/* H1/H2/H3 — gradient-clip yok, sade beyaz */
h1, h2, h3, h4, h5, h6,
.hero h1,
.page-hero-content h1,
.section-header h2,
.about-story-content h2,
.cta-content h2,
.sd-content h2,
.bns-content h2 {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hero h1 özel boyut */
.hero h1 { font-size: clamp(2.8rem,6vw,5rem) !important; font-weight: 800 !important; line-height: 1.1 !important; }
.page-hero-content h1 { font-size: clamp(2.4rem,5vw,4rem) !important; font-weight: 800 !important; line-height: 1.15 !important; }

/* Section tag — altın pill */
.section-tag {
    display: inline-block !important;
    background: rgba(212,168,67,0.1) !important;
    border: 1px solid rgba(212,168,67,0.3) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 6px 18px !important;
    border-radius: 30px !important;
    margin-bottom: 20px !important;
}

/* Logo */
.logo, a.logo {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-decoration: none !important;
}
.logo span:first-of-type { color: #d4a843 !important; -webkit-text-fill-color: #d4a843 !important; }
.logo .co { color: rgba(255,255,255,0.35) !important; -webkit-text-fill-color: rgba(255,255,255,0.35) !important; }

/* Nav links */
.nav-links a {
    color: rgba(255,255,255,0.75) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.75) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}
.nav-links a:hover, .nav-links a.active {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
}

/* Nav login button */
a.nav-login, .nav-login {
    background: rgba(212,168,67,0.12) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    border: 1px solid rgba(212,168,67,0.35) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}
a.nav-login:hover, .nav-login:hover {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}

/* PRIMARY BUTTON — altın */
a.btn-primary, .btn-primary,
a.btn-cta-primary, .btn-cta-primary {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 14px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    animation: none !important;
    box-shadow: 0 4px 20px rgba(212,168,67,0.35) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
a.btn-primary:hover, .btn-primary:hover,
a.btn-cta-primary:hover, .btn-cta-primary:hover {
    background: #e8c060 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(212,168,67,0.5) !important;
}

/* SECONDARY BUTTON — şeffaf */
a.btn-secondary, .btn-secondary,
a.btn-cta-secondary, .btn-cta-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    animation: none !important;
    transition: all 0.25s !important;
}
a.btn-secondary:hover, .btn-secondary:hover,
a.btn-cta-secondary:hover, .btn-cta-secondary:hover {
    border-color: rgba(212,168,67,0.5) !important;
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
}

/* Form & newsletter buttons */
.cf-submit, .fn-btn, .bns-btn {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* sd-cta */
a.sd-cta, .sd-cta {
    color: #d4a843 !important;
    -webkit-text-fill-color: #d4a843 !important;
    background: rgba(212,168,67,0.1) !important;
    border: 1px solid rgba(212,168,67,0.3) !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}
a.sd-cta:hover, .sd-cta:hover {
    background: #d4a843 !important;
    color: #0a0a0f !important;
    -webkit-text-fill-color: #0a0a0f !important;
}

/* BTN load more */
.btn-load-more {
    background: rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.75) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    -webkit-background-clip: unset !important;
    animation: none !important;
}

/* General text */
body { color: rgba(255,255,255,0.8) !important; }
p, span, li, label, small, em, blockquote {
    -webkit-text-fill-color: unset !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}
