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

        :root {
            --cream: #faf7f2;
            --warm-white: #f5f0e8;
            --gold: #b8943a;
            --gold-light: #d4aa55;
            --gold-pale: #e8d5a0;
            --gold-glow: rgba(184, 148, 58, 0.25);
            --sand: #e8dccc;
            --text-dark: #1a1208;
            --text-mid: #4a3f2a;
            --text-soft: #7a6a50;
            --navy: #1a2e4a;
            --navy-light: #2d4a7a;
            --shadow: rgba(26, 18, 8, 0.12);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px
        }

        body {
            background-color: #faf7f2;
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden
        }

        /* ============================
   SCROLL PROGRESS BAR — MINIMAL
   ============================ */
        #progress-bar-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 99999;
        }

        .pb-landmark {
            display: none;
        }

        #progress-track {
            width: 100%;
            height: 4px;
            background: rgba(184, 148, 58, 0.15);
            position: relative;
            overflow: hidden;
        }

        #progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #b8943a, #f0cc70, #b8943a);
            background-size: 200% 100%;
            border-radius: 0 2px 2px 0;
            transition: width 0.12s linear;
            box-shadow: 0 0 12px rgba(212, 170, 85, 0.8);
            animation: shimmerBar 2s linear infinite;
        }

        @keyframes shimmerBar {
            0% {
                background-position: 0% 0%;
            }

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

        /* ============================
   HERO VIDEO BG
   ============================ */
        .hero-video-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background-repeat: no-repeat;
            background-size: 112% 112%;
            background-position: center;
            transform: translate3d(0, 0, 0) scale(1.08);
            transform-origin: center center;
            will-change: transform;
            backface-visibility: hidden;
            filter: saturate(1.03) contrast(1.02);
            animation: heroFloat 16s ease-in-out infinite alternate;
        }

        .hero-motion {
            position: absolute;
            inset: -25%;
            z-index: 1;
            pointer-events: none;
            background:
                radial-gradient(circle at 20% 30%, rgba(240, 204, 112, 0.7), transparent 18%),
                radial-gradient(circle at 78% 62%, rgba(255, 248, 232, 0.25), transparent 16%),
                radial-gradient(circle at 52% 48%, rgba(184, 148, 58, 0.42), transparent 20%),
                linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62% 100%);
            background-size: 100% 100%, 100% 100%, 100% 100%, 320% 320%;
            filter: blur(10px) saturate(1.6);
            mix-blend-mode: screen;
            opacity: 1;
            transform: translate3d(0, 0, 0);
            will-change: transform, background-position, filter;
            animation:
                heroMotionDrift 10s ease-in-out infinite alternate,
                heroMotionSweep 7s linear infinite;
        }

        @keyframes heroMotionDrift {
            0% {
                transform: translate3d(-5%, -3%, 0) scale(1.04) rotate(-6deg);
                background-position: 18% 26%, 72% 68%, 45% 42%, 0% 0%;
            }

            50% {
                transform: translate3d(2%, 1%, 0) scale(1.08) rotate(2deg);
                background-position: 30% 34%, 64% 56%, 56% 44%, 50% 50%;
            }

            100% {
                transform: translate3d(6%, 4%, 0) scale(1.12) rotate(7deg);
                background-position: 42% 40%, 58% 50%, 48% 52%, 100% 100%;
            }
        }

        @keyframes heroMotionSweep {
            0% {
                filter: blur(10px) saturate(1.45) brightness(0.95);
            }

            100% {
                filter: blur(12px) saturate(1.75) brightness(1.08);
            }
        }

        @keyframes heroFloat {
            0% {
                background-position: 48% 48%;
                filter: saturate(1.02) contrast(1.01) brightness(0.98);
            }

            100% {
                background-position: 52% 53%;
                filter: saturate(1.08) contrast(1.05) brightness(1.02);
            }
        }

        .hero-video-wrap video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.55;
        }

        .hero-video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg,
                    rgba(8, 5, 1, 0.5) 0%,
                    rgba(10, 6, 2, 0.3) 40%,
                    rgba(5, 3, 1, 0.55) 100%);
            z-index: 1;
        }

        /* ============================
   NAVBAR
   ============================ */
        .navbar {
            position: fixed;
            top: 54px;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 0 40px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(250, 247, 242, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(184, 148, 58, 0.15);
            transition: box-shadow 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(26, 18, 8, 0.08)
        }

        .nav-logo img {
            height: 38px;
            object-fit: contain
        }

        .nav-cta {
            padding: 9px 28px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #fff;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(184, 148, 58, 0.35);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(184, 148, 58, 0.45)
        }

        /* ============================
   HERO
   ============================ */
        #hero {
            min-height: 100vh;
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        /* Hero arka plan katmanı kaldırıldı - body arkaplan.png kullanıyor */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            display: none;
        }

        .hero-bg-overlay {
            display: none;
        }

        /* Animated light rays */
        .hero-rays {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1
        }

        .ray {
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            background: linear-gradient(180deg, rgba(212, 170, 85, 0.4), transparent);
            transform-origin: top center;
            animation: raySwing var(--dur, 8s) ease-in-out infinite alternate;
        }

        @keyframes raySwing {
            from {
                opacity: 0.3;
                transform: rotate(var(--ra, -15deg)) scaleY(1)
            }

            to {
                opacity: 0.7;
                transform: rotate(var(--rb, 15deg)) scaleY(1.1)
            }
        }

        .hero-content {
            position: absolute;
            top: 5vh;
            /* Üst kısımdan sabit boşluk */
            left: 0;
            right: 0;
            margin: 0 auto;
            margin-bottom: 0;
            z-index: 3;
            max-width: 900px;
            padding: 0 24px;
        }

        .hero-bottom-content {
            position: absolute;
            bottom: 11vh;
            /* Alt kısımdan sabit pozisyon */
            left: 0;
            right: 0;
            margin: 0 auto;
            text-align: center;
            z-index: 3;
            max-width: 1200px;
            width: min(92vw, 1200px);
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-logos {
            height: 64px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            margin: 10px auto 18px;
            display: block;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.8s forwards;
            /* Gönül Yolculuğu yazısından sonra gelsin */
        }

        /* Hero rozeti */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 20px;
            border: 1px solid rgba(212, 170, 85, 0.7);
            border-radius: 40px;
            font-size: 0.7rem;
            letter-spacing: 4px;
            color: var(--gold-light);
            background: rgba(26, 18, 8, 0.35);
            backdrop-filter: blur(8px);
            margin-bottom: 12px;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.4s forwards;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .hero-title {
            font-family: 'Cinzel Decorative', 'Cinzel', serif;
            font-size: clamp(3rem, 9vw, 6.5rem);
            line-height: 1.25;
            font-weight: 900;
            letter-spacing: -1px;
            margin-bottom: 0px;
            padding: 0.1em 0 0.05em;
            /* Boşluklar daraltıldı */
            opacity: 0;
            animation: fadeUp 1s ease 0.5s forwards;
            background: linear-gradient(135deg, #fff8e8 0%, #f0cc70 40%, #d4aa55 60%, #fff0c0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
        }

        .hero-title span {
            display: block;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-divider {
            width: 110px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
            margin: 10px auto 16px;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.9s forwards;
        }
        .italic-text {
           position: absolute!important;
           right: -50px!important;
           bottom: -20px!important;
           font-size:70px!important;
           font-family: 'Dancing Script', cursive!important;
           background: #fff!important; 
           background-clip: text!important;
        }

        .hero-slogan {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.3rem, 3vw, 2.3rem);
            letter-spacing: 2.5px;
            margin-bottom: 14px;
            font-weight: 700;
            opacity: 0;
            animation: fadeUp 0.9s ease 1s forwards;
            color: rgba(255, 248, 220, 0.95);
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 170, 85, 0.3);
        }

        .hero-sub {
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            line-height: 1.75;
            max-width: 760px;
            margin: 0 auto 18px;
            opacity: 0;
            animation: fadeUp 0.9s ease 1.1s forwards;
            color: rgba(255, 245, 210, 0.85);
            text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
        }

        .hero-menu {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 980px;
            margin: 0 auto 18px;
            opacity: 0;
            animation: fadeUp 0.9s ease 1.2s forwards;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: 999px;
            border: 1px solid rgba(255, 225, 150, 0.28);
            background: linear-gradient(135deg, rgba(184, 148, 58, 0.9) 0%, rgba(212, 170, 85, 0.95) 50%, rgba(184, 148, 58, 0.9) 100%);
            color: #fff;
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 40px rgba(184, 148, 58, 0.38), 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
            white-space: nowrap;
        }

        .hero-pill-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-right: 8px;
        }

        .hero-pill:hover {
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, #362a14 0%, #4a3a1f 100%);
            border-color: var(--gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 148, 58, 0.4);
        }

        .hero-pill.active {
            color: #fff;
            border-color: rgba(240, 204, 112, 0.85);
            background: linear-gradient(135deg, #362a14 0%, #4a3a1f 100%);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 148, 58, 0.4);
        }

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

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

        .btn-apply {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 56px;
            background: linear-gradient(135deg, rgba(184, 148, 58, 0.9) 0%, rgba(212, 170, 85, 0.95) 50%, rgba(184, 148, 58, 0.9) 100%);
            background-size: 200% 100%;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 2px;
            border: 1px solid rgba(255, 220, 100, 0.4);
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(184, 148, 58, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
            transition: background-position 0.4s, transform 0.3s, box-shadow 0.3s;
            opacity: 0;
            animation: fadeUp 0.9s ease 1.5s forwards;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        .btn-apply:hover {
            background: linear-gradient(135deg, #362a14 0%, #4a3a1f 100%);
            color: #fff !important;
            text-decoration: none !important;
            border-color: var(--gold);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 148, 58, 0.4);
        }
        .btn-apply:hover svg {
            color: #fff !important;
        }

        .btn-apply svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .scroll-hint {
            position: absolute;
            bottom: 4vh;
            left: 0;
            right: 0;
            text-align: center;
            opacity: 1;
            z-index: 3;
            animation: fadeUp 0.8s ease 1.7s forwards;
        }

        .scroll-hint p {
            font-size: 0.7rem;
            letter-spacing: 4px;
            color: rgba(255, 240, 180, 0.7);
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px
        }

        .scroll-arrow {
            width: 38px;
            height: 38px;
            border: 1.5px solid rgba(240, 204, 112, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            animation: arrowBounce 2s ease-in-out infinite;
            background: rgba(0, 0, 0, 0.38);
            backdrop-filter: blur(6px);
            box-shadow: 0 0 18px rgba(184, 148, 58, 0.28);
        }

        .scroll-arrow svg {
            width: 14px;
            height: 14px;
            color: #fff;
            opacity: 1;
        }

        @keyframes arrowBounce {

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

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

        /* ============================
   SECTION SHARED STYLES
   ============================ */
        .section-header {
            text-align: center;
            margin-bottom: 72px
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 24px;
            border: 1px solid rgba(184, 148, 58, 0.5);
            border-radius: 30px;
            font-size: 0.7rem;
            letter-spacing: 4px;
            color: var(--gold);
            margin-bottom: 20px;
            background: rgba(255, 248, 220, 0.15);
            backdrop-filter: blur(8px);
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2rem, 5vw, 3.8rem);
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .section-title em {
            font-style: normal;
            font-weight: bold;
            color: var(--gold)
        }

        .section-line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 0 auto;
        }

        /* ============================
   CRITERIA SECTION
   ============================ */
        #criteria {
            padding: 120px 24px;
            background: #faf7f2;
            position: relative;
            overflow: hidden;
        }

        .criteria-bg-pattern {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.1'/%3E%3C/svg%3E");
        }

        /* ============================
   APPROVAL TIMELINE (CRITERIA)
   ============================ */
        .approval-timeline {
            position: relative;
            max-width: 1000px;
            margin: 40px auto 0;
            padding: 0 0 60px;
        }

        .approval-path {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            background: rgba(184, 148, 58, 0.15);
            z-index: 0;
        }

        .approval-path-fill {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            background: linear-gradient(180deg, var(--gold), var(--gold-light));
            z-index: 1;
            height: 0%;
            transition: height 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            border-radius: 999px;
            box-shadow: 0 0 16px rgba(184, 148, 58, 0.65);
        }

        .t-card {
            position: relative;
            width: calc(50% - 60px);
            background: linear-gradient(180deg, #ffffff 0%, #fcf7ee 100%);
            border-radius: 20px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 10px 28px rgba(26, 18, 8, 0.08);
            border: 1px solid rgba(184, 148, 58, 0.2);
            z-index: 2;
            margin-bottom: 30px;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.6s, border-color 0.6s;
            opacity: 0;
            transform: translateY(30px);
        }

        .approval-timeline .t-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .t-card.approved {
            border-color: rgba(184, 148, 58, 0.6);
            box-shadow: 0 18px 44px rgba(184, 148, 58, 0.15);
        }

        .t-card::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: rgba(184, 148, 58, 0.2);
            z-index: -1;
            transition: background 0.6s;
        }

        .t-card.approved::before {
            background: var(--gold);
        }

        .t-card.left {
            left: 0;
            margin-right: auto;
        }

        .t-card.left::before {
            right: -60px;
        }

        .t-card.right {
            left: 50%;
            margin-left: 60px;
            top: 40px;
        }

        .t-card.right::before {
            left: -60px;
        }

        /* İkon yuvarlağı - Normal durum */
        .t-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #faf7f2;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid rgba(184, 148, 58, 0.3);
            position: relative;
            transition: all 0.5s ease;
            color: var(--text-mid);
        }

        .t-icon svg.main-icon {
            width: 28px;
            height: 28px;
            transition: all 0.5s ease;
        }

        /* İkon yuvarlağı - Onaylı durum */
        .t-card.approved .t-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-color: var(--gold);
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(184, 148, 58, 0.4);
            transition: all 0.8s ease;
            /* yuvarlağın altın rengine dönüş süresi uzatıldı */
        }

        .t-card.approved .t-icon svg.main-icon {
            opacity: 0;
            transform: scale(0.5);
        }

        /* Onay Tiki (Checkmark) */
        .t-icon svg.check-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            width: 32px;
            height: 32px;
            color: #fff;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .t-card.approved .t-icon svg.check-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .t-text h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.22rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.2;
            transition: color 0.4s;
            letter-spacing: 0.01em;
        }

        .t-card.approved .t-text h4 {
            color: var(--gold);
        }

        .t-text p {
            font-size: 1rem;
            color: #5a4c37;
            line-height: 1.65;
        }

        .t-card.approved .t-text p {
            color: #3a2f20;
        }

        @media (max-width: 1024px) and (min-width: 641px) {
            .hero-logos {
                height: 52px;
                margin: 8px auto 14px;
            }

            .hero-title {
                font-size: clamp(2.5rem, 6vw, 4.5rem);
                line-height: 1.12;
            }

            .italic-text {
                right: auto !important;
                left: 50% !important;
                bottom: -0.32em !important;
                font-size: clamp(0.9rem, 2.8vw, 1.2rem) !important;
                transform: translateX(-50%) rotate(-6deg) !important;
                width: max-content !important;
                text-align: center !important;
                white-space: nowrap !important;
            }

            .hero-slogan {
                font-size: clamp(1rem, 2.2vw, 1.6rem);
                letter-spacing: 1.6px;
            }
        }

        @media (max-width: 900px) {

            .approval-path,
            .approval-path-fill {
                left: 24px;
            }

            .t-card {
                width: calc(100% - 40px);
                margin-left: 40px !important;
                left: 0 !important;
                top: 0 !important;
            }

            .t-card::before {
                width: 16px;
                left: -16px !important;
                right: auto !important;
            }

            .hero-menu {
                gap: 10px;
                padding: 0 6px;
            }

            .hero-pill {
                padding: 11px 16px;
                font-size: 0.72rem;
                letter-spacing: 1.4px;
            }

            .hero-pill-icon {
                width: 16px;
                height: 16px;
                margin-right: 7px;
            }

            .t-card {
                padding: 18px 18px 18px 16px;
                gap: 12px;
            }

            .t-icon {
                width: 52px;
                height: 52px;
            }

            .t-icon svg.main-icon {
                width: 22px;
                height: 22px;
            }

            .t-icon svg.check-icon {
                width: 22px;
                height: 22px;
            }

            .t-text h4 {
                font-size: 1rem;
                line-height: 1.25;
            }

            .t-text p {
                font-size: 0.92rem;
                line-height: 1.55;
            }
        }

        @media (max-width: 640px) {
            #hero {
                justify-content: flex-start;
                padding-top: 20px;
                padding-bottom: 20px;
                gap: 10px;
            }

            .hero-content {
                position: relative;
                top: auto;
                padding: 0 18px;
                max-width: 100%;
                margin-bottom: 10px;
            }

            .hero-bottom-content {
                position: relative;
                bottom: auto;
                padding: 0 18px;
                gap: 4px;
                width: 100%;
            }

            .hero-logos {
                height: 34px;
                margin: 0 auto 6px;
            }

            .hero-title {
                font-size: clamp(2rem, 7.5vw, 3rem);
                line-height: 1.08;
            }

            .italic-text {
                right: auto !important;
                left: 50% !important;
                bottom: -0.35em !important;
                font-size: clamp(0.95rem, 3.8vw, 1.35rem) !important;
                transform: translateX(-50%) rotate(-6deg) !important;
                width: max-content !important;
                text-align: center !important;
                white-space: nowrap !important;
            }

            .hero-slogan {
                font-size: clamp(0.8rem, 3.2vw, 1rem);
                letter-spacing: 0.6px;
                margin-bottom: 4px;
            }

            .hero-sub {
                font-size: clamp(0.8rem, 2.8vw, 0.95rem);
                line-height: 1.45;
                margin-bottom: 10px;
            }

            .hero-menu {
                gap: 8px;
                margin-bottom: 10px;
            }

            .hero-pill {
                width: 100%;
                white-space: normal;
                line-height: 1.35;
                padding: 12px 14px;
            }

            .hero-pill-icon {
                width: 17px;
                height: 17px;
            }

            .scroll-hint {
                position: relative;
                bottom: auto;
                margin-top: 4px;
                opacity: 1;
            }

            .scroll-hint p {
                letter-spacing: 2px;
                margin-bottom: 8px;
                font-size: 0.62rem;
            }

            .scroll-arrow {
                width: 30px;
                height: 30px;
            }

            .scroll-arrow svg {
                width: 12px;
                height: 12px;
            }
        }

        /* ============================
   LOTTERY SECTION
   ============================ */
        #lottery {
            padding: 100px 24px;
            background: #f5f0e8;
            position: relative;
            overflow: hidden;
        }

        .lottery-container {
            max-width: 900px;
            margin: 0 auto
        }

        .lottery-steps {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
            margin-top: 48px;
            flex-wrap: wrap;
            position: relative;
        }

        .lottery-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: calc(12.5%);
            right: calc(12.5%);
            height: 2px;
            background: repeating-linear-gradient(90deg, rgba(184, 148, 58, 0.4) 0, rgba(184, 148, 58, 0.4) 8px, transparent 8px, transparent 16px);
            z-index: 0;
        }

        .lottery-steps::after {
            content: '';
            position: absolute;
            top: 27px;
            /* 4px olduğu için 1px yukarı alıyoruz tam ortalaması için */
            left: 12.5%;
            height: 4px;
            /* Kesikli çizgiyi örtmesi için kalınlaştırıldı */
            background: var(--gold);
            z-index: 0;
            width: 0;
        }

        .lottery-steps.visible::after {
            animation: fillLineX 3s linear forwards;
            animation-delay: 0.3s;
        }

        @keyframes fillLineX {
            0% {
                width: 0;
                opacity: 0;
            }

            15% {
                opacity: 1;
                width: 7.5%;
            }

            85% {
                opacity: 1;
                width: 75%;
            }

            100% {
                width: 75%;
                opacity: 1;
            }
        }

        .lottery-airplane {
            position: absolute;
            top: 28px;
            left: calc(12.5%);
            width: 42px;
            height: 42px;
            color: var(--gold-light);
            z-index: 1;
            transform: translate(-50%, -50%) rotate(90deg);
            filter: drop-shadow(0 4px 10px rgba(184, 148, 58, 0.4));
            opacity: 0;
        }

        .lottery-steps.visible .lottery-airplane {
            animation: horizFly 3s linear forwards;
            animation-delay: 0.3s;
        }

        @keyframes horizFly {
            0% {
                left: 12.5%;
                opacity: 0;
            }

            15% {
                opacity: 1;
                left: 20%;
            }

            85% {
                opacity: 1;
                left: 87.5%;
            }

            100% {
                left: 87.5%;
                opacity: 0;
            }
        }

        .lstep {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            width: 25%;
            min-width: 140px;
            padding: 0 8px;
            position: relative;
            z-index: 3;
        }

        .lstep-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(184, 148, 58, 0.35);
            border: 3px solid rgba(250, 247, 242, 1);
        }

        .lstep-num svg {
            width: 24px;
            height: 24px;
            color: #fff
        }

        .lstep-label {
            font-family: 'Cinzel', serif;
            font-size: 0.78rem;
            font-weight: bold;
            color: var(--text-dark);
            text-align: center
        }

        .lstep-desc {
            font-size: 0.72rem;
            color: var(--text-soft);
            text-align: center;
            line-height: 1.5
        }

        .mob-path,
        .mob-path-top,
        .mob-path-right,
        .mob-path-bot {
            display: none;
        }

        /* Mobilde Dikey Liste Tasarımı */
        @media (max-width: 900px) {
            .lottery-steps {
                display: flex;
                flex-direction: column;
                row-gap: 40px;
                margin-top: 48px;
                position: relative;
            }

            .lstep {
                width: 100%;
                max-width: none;
                height: auto;
                display: grid;
                grid-template-columns: 56px 1fr;
                grid-template-rows: auto auto;
                column-gap: 24px;
                row-gap: 6px;
                padding-left: 20px;
                padding-right: 20px;
                z-index: 3;
            }

            .lstep-num {
                grid-column: 1;
                grid-row: 1 / 3;
                margin: 0;
            }

            .lstep-label {
                grid-column: 2;
                grid-row: 1;
                text-align: left;
                align-self: end;
                background-color: transparent;
                padding: 0;
                margin: 0;
            }

            .lstep-desc {
                grid-column: 2;
                grid-row: 2;
                text-align: left;
                align-self: start;
                background-color: transparent;
                padding: 0;
                margin: 0;
            }

            .lottery-steps::before,
            .lottery-steps::after {
                display: none !important;
            }

            .mob-path,
            .mob-path-top {
                display: block;
            }

            .mob-path-right,
            .mob-path-bot {
                display: none;
            }

            .mob-path {
                position: absolute;
                top: 28px;
                bottom: 28px;
                left: 47px;
                width: 2px;
                height: auto;
                border-top: none;
                border-right: none;
                border-bottom: none;
                border-left: 2px dashed rgba(184, 148, 58, 0.4);
                z-index: 0;
            }

            .mob-path-top {
                position: absolute;
                top: 28px;
                left: 46px;
                width: 4px;
                height: 0;
                background: var(--gold);
                z-index: 0;
            }

            .lottery-steps.visible .mob-path-top {
                animation: mFillVer 2s linear forwards;
                animation-delay: 0.3s;
            }

            @keyframes mFillVer {
                from { height: 0; }
                to { height: calc(100% - 56px); }
            }

            .lottery-airplane {
                left: 48px;
                top: 28px;
                transform: translate(-50%, -50%) rotate(180deg);
                display: block !important;
                z-index: 1;
            }

            .lottery-steps.visible .lottery-airplane {
                animation: mFlyVer 2s linear forwards;
                animation-delay: 0.3s;
            }

            @keyframes mFlyVer {
                0% {
                    left: 48px;
                    top: 28px;
                    opacity: 0;
                }
                5% {
                    opacity: 1;
                    top: 28px;
                }
                95% {
                    opacity: 1;
                    top: calc(100% - 28px);
                }
                100% {
                    left: 48px;
                    top: calc(100% - 28px);
                    opacity: 0;
                }
            }
        }

        .lottery-notice {
            margin-top: 48px;
            padding: 32px 36px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid rgba(184, 148, 58, 0.2);
            box-shadow: 0 4px 20px rgba(26, 18, 8, 0.06);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            max-width: 700px;
            margin: 48px auto 0;
        }

        .notice-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(184, 148, 58, 0.12), rgba(212, 170, 85, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(184, 148, 58, 0.2);
        }

        .notice-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gold)
        }

        .lottery-notice p {
            font-size: 0.85rem;
            color: var(--text-mid);
            line-height: 1.7
        }

        .lottery-notice strong {
            color: var(--gold);
            font-weight: 600
        }

        /* ============================
   CTA SECTION
   ============================ */
        #cta {
            padding: 120px 24px;
            text-align: center;
            background: linear-gradient(135deg, #2a1f0a 0%, #1a1208 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='none' stroke='%23b8943a' stroke-width='0.4' opacity='0.15'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(184, 148, 58, 0.15), transparent 70%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2
        }

        .cta-eyebrow {
            color: rgba(184, 148, 58, 0.7);
            font-size: 0.7rem;
            letter-spacing: 4px;
            margin-bottom: 16px
        }

        .cta-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: bold;
            color: #fff;
            margin-bottom: 16px;
        }

        .cta-sub {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95rem;
            margin-bottom: 48px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto
        }

        .btn-apply-light {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 60px;
            background: transparent;
            color: var(--gold-light);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            border: 1.5px solid var(--gold);
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 0 0 rgba(184, 148, 58, 0.3);
            transition: background 0.3s, box-shadow 0.3s, transform 0.3s, color 0.3s;
        }

        .btn-apply-light::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn-apply-light:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(184, 148, 58, 0.4)
        }

        .btn-apply-light:hover::before {
            opacity: 1
        }

        .btn-apply-light span,
        .btn-apply-light svg {
            position: relative;
            z-index: 1
        }

        .btn-apply-light svg {
            width: 22px;
            height: 22px
        }

        /* ============================
   FOOTER
   ============================ */
        footer {
            padding: 48px 32px 28px;
            background: rgba(255, 252, 242, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid rgba(184, 148, 58, 0.2);
            text-align: center;
        }

        .footer-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            margin-bottom: 24px;
        }

        .footer-logos img {
            height: 60px;
            object-fit: contain;
            filter: grayscale(0.2) opacity(0.85);
            transition: filter 0.3s, transform 0.3s;
        }

        .footer-logos img:hover {
            filter: none;
            transform: scale(1.05)
        }

        .footer-copy {
            font-size: 0.72rem;
            color: var(--text-soft);
            letter-spacing: 1px
        }

        /* ============================
   REVEAL
   ============================ */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.7s ease, transform 0.7s ease
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-36px);
            transition: opacity 0.7s ease, transform 0.7s ease
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0)
        }

        /* ============================
   ANIMATED FLOATING PARTICLES
   ============================ */
        .particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 2
        }

        .p-dot {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 240, 0.96) 18%, rgba(255, 244, 210, 0.82) 36%, rgba(255, 227, 160, 0.35) 58%, rgba(255, 227, 160, 0) 75%);
            box-shadow:
                0 0 8px rgba(255, 255, 255, 0.95),
                0 0 18px rgba(255, 250, 220, 0.7),
                0 0 30px rgba(255, 232, 170, 0.28);
            filter: blur(0.1px);
            transform-origin: center;
            animation: sparkFly var(--dur, 1.8s) ease-out forwards;
            opacity: 0;
            will-change: transform, opacity, filter;
        }

        .p-dot::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 2px;
            height: var(--trail, 18px);
            transform: translate(-50%, 0) rotate(180deg);
            transform-origin: top center;
            background: linear-gradient(to bottom,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(255, 253, 245, 0.95) 20%,
                    rgba(255, 242, 205, 0.72) 50%,
                    rgba(255, 227, 160, 0.22) 78%,
                    rgba(255, 227, 160, 0) 100%);
            border-radius: 999px;
            opacity: 0.9;
            filter: blur(0.2px);
        }

        @keyframes sparkFly {
            0% {
                opacity: 0;
                transform: translate3d(0, 18px, 0) scale(0.25) rotate(0deg);
                filter: blur(0.4px);
            }

            8% {
                opacity: 1;
            }

            65% {
                opacity: 0.9;
            }

            100% {
                opacity: 0;
                transform: translate3d(var(--tx, 0px), var(--ty, -180px), 0) scale(var(--scale, 1)) rotate(var(--rot, 220deg));
                filter: blur(0.8px);
            }
        }

        /* ============================
   TEXT ANIMATION CLASSES
   ============================ */
        .char {
            display: inline-block;
            opacity: 0;
            animation: charIn 0.5s ease forwards
        }

        @keyframes charIn {
            from {
                opacity: 0;
                transform: translateY(20px) rotateX(-40deg)
            }

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