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

:root {
    --primary: #22C7F5;
    --primary-dark: #0891B2;
    --secondary: #16181B;
    --bg-primary: #0f1114;
    --bg-secondary: #1a1d21;
    --bg-tertiary: #25282d;
    --text-primary: #ffffff;
    --text-secondary: #b4b8bd;
    --text-muted: #6b7280;
    --border-color: rgba(34, 199, 245, 0.2);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 24px rgba(34, 199, 245, 0.4);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid var(--border-color);
    padding: 16px 0;
    /* Sabit yükseklik kaldırıldı, otomatik yükseklik verildi */
    height: auto;
    min-height: 96px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

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

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.nav-logo-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
}

.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 158, 61, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    padding: 8px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 158, 61, 0.3), transparent);
    animation: pulseRing 2s ease-out infinite;
    z-index: -1;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(226, 158, 61, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(226, 158, 61, 0.6);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(226, 158, 61, 0.5));
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-image {
    width: 170px;
    height: auto;
    display: block;
}

.logo-text-main {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, #38BDF8 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    margin: 0;
    text-shadow: 0 0 30px rgba(226, 158, 61, 0.3);
}

@keyframes gradientShift {
    to {
        background-position: 200% center;
    }
}

.logo-subtitle-main {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.nav-menu-left {
    justify-content: flex-end;
}

.nav-menu-right {
    justify-content: flex-start;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 80px;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--text-primary);
    background: rgba(226, 158, 61, 0.1);
    transform: translateY(-2px);
}

.nav-item:hover::before {
    width: 60%;
}

.nav-item-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-item-icon {
    transform: scale(1.2);
}

.nav-item-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Metnin taşmaması için mobilde kırılmaya izin ver */
    white-space: nowrap;
}

/* Hamburger menü butonu (varsayılan: masaüstünde gizli) */
.nav-toggle {
    display: none;
    /* Klasik hamburger butonu boyutu */
    width: 26px;
    height: 18px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 20;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
    transition: background 0.2s ease;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

/* Mobil açılır menü paneli */
.nav-links-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 12, 16, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
    padding: 12px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 15;
}

.nav-links-mobile.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-link-mobile {
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link-mobile:hover {
    background: rgba(226, 158, 61, 0.12);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-new {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 199, 245, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(34, 199, 245, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(34, 199, 245, 0.03) 50%, transparent 100%);
    background-size: 100px 100px;
    animation: patternMove 30s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, 100px 100px; }
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-wrapper.hero-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}

.hero-video {
    position: relative;
    z-index: 1;
    order: -1;
}

.hero-main {
    order: 1;
}

.hero-main {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(226, 158, 61, 0.1);
    border: 1px solid var(--primary);
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.heading-line {
    display: block;
}

.heading-line.accent {
    background: linear-gradient(135deg, var(--primary) 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 52px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 34px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 2px solid var(--primary);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 199, 245, 0.1) 0%, rgba(34, 199, 245, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 199, 245, 0.2);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-btn .btn-icon {
    font-size: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-btn .btn-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary);
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-btn:hover .btn-icon {
    transform: scale(1.1) translateY(-2px);
}

@media (min-width: 880px) {
    .hero-buttons {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .hero-btn {
        padding: 16px 24px;
        flex-direction: row;
    }
    
    .hero-btn .btn-text {
        font-size: 14px;
    }
    
    .hero-btn .btn-icon {
        font-size: 24px;
    }
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-two-column .hero-features {
    justify-content: flex-start;
}

.feature-box {
    padding: 20px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Section */
.video-section-new {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.video-container-new {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    /* Kontrollerin videonun altında görünebilmesi için taşmayı kesme */
    overflow: visible;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-container-new.video-square {
    max-width: 600px;
}

.hero-video .video-container-new.video-square {
    max-width: 100%;
    width: 100%;
    /* Hero üzerindeki video ve thumbnail için özel en/boy oranı: 552 / 605 */
    aspect-ratio: 552 / 605;
    /* Hero'da border'ın sadece dış çerçeve olarak görünmesi için taşmayı kes */
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.video-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
    position: relative;
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    justify-content: center;
}

/* Hero play butonu için renkli glow efekti */
.hero-video .video-overlay::before {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center,
            rgba(26, 29, 33, 0.85) 0%,
            rgba(26, 29, 33, 0.85) 40%,
            transparent 70%);
    filter: blur(6px);
    opacity: 0.95;
    z-index: 1;
}

.play-btn-new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.play-btn-new:hover {
    transform: scale(1.1);
    box-shadow: 0 0 32px rgba(226, 158, 61, 0.6);
}

.play-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero video için: iframe mutlak pozisyonda olmasın, içerik (video+kontroller) kadar uzasın */
.hero-video .video-iframe {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
}

.video-iframe video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Özel video player */
.custom-video-player {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.custom-video {
    flex: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
    background: #000;
}

.custom-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(10, 12, 16, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 20px 20px;
}

.custom-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: radial-gradient(circle at top left, rgba(226, 158, 61, 0.35), transparent 60%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(226, 158, 61, 0.6);
    transform: translateY(-1px);
}

.custom-progress-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.custom-progress {
    width: 100%;
    appearance: none;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
}

.custom-progress::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(226, 158, 61, 0.8);
    margin-top: -4px;
}

.custom-progress::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(226, 158, 61, 0.8);
    border: none;
}

.custom-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 82px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.modal-video-container .custom-video {
    object-fit: contain;
}

.modal-video-container .custom-controls {
    border-radius: 0 0 20px 20px;
}

/* Video üzerinde seçimi engelle */
.video-container-new {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Steps Timeline */
.steps-timeline {
    padding: 80px 0;
    background: var(--bg-primary);
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    margin-top: 16px;
    min-height: 40px;
}

.marker-line.final {
    display: none;
}

.step-content-new {
    flex: 1;
    padding-top: 8px;
}

.step-header {
    margin-bottom: 24px;
}

.step-title-new {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-visual {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.step-video {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.step-visual .video-container-new {
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-visual .video-container-new:hover {
    border-color: var(--primary);
    background: rgba(226, 158, 61, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-video-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 24px;
}

.video-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 158, 61, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-visual .video-container-new:hover .video-icon-wrapper {
    background: rgba(226, 158, 61, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(226, 158, 61, 0.4);
}

.video-icon {
    color: var(--primary);
    transition: all 0.3s ease;
}

.step-visual .video-container-new:hover .video-icon {
    transform: scale(1.1);
}

.video-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.step-visual .video-container-new:hover .video-label {
    color: var(--primary);
}

@media (max-width: 768px) {
    .step-visual {
        grid-template-columns: 1fr;
    }
}

.visual-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.visual-icon {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(226, 158, 61, 0.3));
}

.visual-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.step-desc-new {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.instruction-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.instruction-box:hover {
    background: rgba(226, 158, 61, 0.05);
    border-color: var(--primary);
    transform: translateX(4px);
}

.inst-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.instruction-box p {
    margin: 0;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.instruction-box strong {
    color: var(--primary);
    font-weight: 600;
}

.alert-box {
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.alert-box.info {
    background: rgba(226, 158, 61, 0.1);
    border: 1px solid var(--primary);
    color: var(--text-primary);
}

.alert-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning);
    color: var(--text-primary);
}

.alert-box.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--text-primary);
}

.alert-box strong {
    display: block;
    margin-bottom: 4px;
}

.step-subsection {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.step-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

/* Bonus Section */
.bonus-section-new {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.bonus-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.bonus-header {
    margin-bottom: 32px;
}

.bonus-icon-new {
    font-size: 64px;
    margin-bottom: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bonus-title-new {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.bonus-body {
    text-align: center;
}

.celebration-section {
    text-align: center;
    margin-bottom: 24px;
}

.celebration-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 8px;
    animation: celebration 1s infinite;
}

@keyframes celebration {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.celebration-title {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.bonus-desc-new {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.7;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.bonus-card-item {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bonus-card-item.highlight {
    border-color: var(--primary);
    background: rgba(226, 158, 61, 0.1);
}

.bonus-card-item.total {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: var(--text-primary);
}

.card-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.bonus-card-item.total .card-label {
    color: rgba(255, 255, 255, 0.9);
}

.card-amount {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.bonus-card-item.total .card-amount {
    color: var(--text-primary);
    font-size: 28px;
}

.success-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 24px auto;
    flex-wrap: wrap;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 100px;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.yatirim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.yatirim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-dark);
}

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

@media (max-width: 768px) {
    .success-badge-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .success-badge,
    .yatirim-btn {
        width: 100%;
        max-width: 100%;
    }
    
    .yatirim-btn {
        padding: 14px 24px;
    }
}

.check-icon {
    font-size: 20px;
}

.success-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
}

.bonus-footer-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
}

/* Footer */
.footer-new {
    padding: 48px 0 32px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

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

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

.footer-logo-new {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-notice {
    padding: 12px 20px;
    background: rgba(226, 158, 61, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--secondary);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 9000;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 0 24px rgba(226, 158, 61, 0.7);
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

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

    .navbar-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    /* Hamburger'i göster, klasik menüleri gizle */
    .nav-toggle {
        display: flex;
        /* Logodan sonra, sağda konumlanması için daha yüksek order */
        order: 2;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu-left,
    .nav-menu-right {
        justify-content: center;
    }

    .nav-logo-centered {
        /* Logo solda, hamburger sağda olacak şekilde ortalamayı kaldır */
        order: 1;
        margin: 0;
    }

    .nav-item {
        padding: 10px 12px;
        min-width: 70px;
    }

    .nav-item-icon {
        font-size: 18px;
    }

    .nav-item-text {
        font-size: 11px;
        /* Küçük ekranlarda satır kırılmasına izin ver */
        white-space: normal;
    }

    /* Orta kısımdaki tekil linki (Adımlar) mobilde masaüstü menüsü yerine gizle */
    .nav-item-center-link {
        display: none;
    }

    .logo-icon {
        width: 56px;
        height: 56px;
    }

    .logo-text-main {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .logo-subtitle-main {
        font-size: 12px;
    }

    .hero-wrapper.hero-two-column {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-two-column .hero-features {
        justify-content: center;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-heading {
        font-size: 32px;
    }

    .timeline-step {
        flex-direction: column;
        gap: 16px;
    }

    .step-marker {
        flex-direction: row;
        align-items: flex-start;
    }

    .marker-line {
        width: 40px;
        height: 2px;
        margin-top: 0;
        margin-left: 16px;
        background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    }

    .step-title-new {
        font-size: 24px;
    }

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

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

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

    .navbar-content {
        gap: 16px;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-item {
        padding: 8px 10px;
        min-width: 60px;
    }

    .nav-item-icon {
        font-size: 16px;
    }

    .nav-item-text {
        font-size: 10px;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .logo-text-main {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .logo-subtitle-main {
        font-size: 11px;
    }

    .hero-heading {
        font-size: 24px;
    }

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

    .feature-box {
        width: 100%;
    }

    .bonus-wrapper {
        padding: 32px 24px;
    }

    .bonus-title-new {
        font-size: 28px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    z-index: 10000;
    background: var(--bg-tertiary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(226, 158, 61, 0.8);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.modal-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}
