        /* ── DEĞIŞKENLER (index.html ile aynı) ── */
        :root {
            --primary-green: #014131;
            --accent-teal: #42726d;
            --teal-light: #4db6ac;
            --text-dark: #333333;
            --text-gray: #666;
            --bg: #f4f8f7;
            --white: #ffffff;
            --border: #d4e4df;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body, input, button, textarea, select { font-family: 'Inter', sans-serif; }
        body { color: var(--text-dark); line-height: 1.6; background: var(--white); overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: .3s; }
        ul { list-style: none; }

        /* ── NAVBAR ── */
        .navbar { background: #fff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease; }
        .navbar.nav-hidden { transform: translateY(-100%); }
        .logo img { height: 60px; display: block; transition: opacity .2s ease; }
        .nav-center { display: flex; gap: 20px; align-items: center; margin-left: auto; margin-right: 40px; }
        .nav-item { position: relative; padding: 10px 0; cursor: pointer; }
        .nav-link { color: #000; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; padding: 8px 12px; border-radius: 5px; transition: .3s; display: block; }
        .nav-link:hover { color: var(--primary-green); background: rgba(1,65,49,.05); }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            width: 960px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border-top: 3px solid var(--accent-teal);
            border-radius: 16px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 20px 16px;
            z-index: 1001;
            text-align: left;
        }

        .dropdown-col {
            display: flex;
            flex-direction: column;
        }

        .dropdown-col-title {
            display: block;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-teal);
            padding: 6px 20px 10px;
        }

        .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            font-size: .85rem;
            font-weight: 600;
            color: var(--text-dark);
            white-space: nowrap;
            transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
        }

        .dropdown-menu li a i {
            width: 16px;
            flex-shrink: 0;
            text-align: center;
            font-size: 0.8rem;
            color: var(--accent-teal);
            transition: color 0.25s ease;
        }

        .dropdown-col li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover { background: #f0f8f7; color: var(--accent-teal); padding-left: 25px; }

        .dropdown-menu li a:hover i { color: var(--accent-teal); }

        .dropdown-placeholder a,
        .dropdown-placeholder a:hover {
            visibility: hidden;
            pointer-events: none;
            background: transparent;
            padding-left: 20px;
        }
        .nav-right { display: flex; gap: 15px; align-items: center; }
        .btn-lang { padding: 8px 12px; border: 2px solid #000; border-radius: 50px; background: transparent; cursor: pointer; transition: .3s; display: flex; align-items: center; color: #000; }
        .btn-lang:hover { border-color: var(--primary-green); transform: translateY(-2px); }
        .btn-auth { padding: 10px 20px; border: 2px solid #000; color: #000; border-radius: 50px; font-weight: 700; font-size: .8rem; background: transparent; transition: .3s; }
        .btn-auth:hover { background: var(--white); color: var(--primary-green); transform: translateY(-2px); }
        .hamburger-menu { display: none; font-size: 2rem; color: #000; cursor: pointer; transition: color .3s ease; }

        /* Navbar'ın hero fotoğrafının üzerinde şeffaf durduğu hâli (sayfa en üstteyken) */
        .navbar.transparent { background: transparent; box-shadow: none; }
        .navbar.transparent .nav-link { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
        .navbar.transparent .nav-link:hover { background: rgba(255,255,255,.15); color: #fff; }
        .navbar.transparent .dropdown-menu .nav-link,
        .navbar.transparent .dropdown-menu li a { color: var(--text-dark); text-shadow: none; }
        .navbar.transparent .btn-auth { border-color: #fff; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
        .navbar.transparent .btn-auth:hover { background: #fff; color: var(--primary-green); text-shadow: none; }
        .navbar.transparent .btn-lang { border-color: #fff; color: #fff; }
        .navbar.transparent .hamburger-menu { color: #fff; }

        /* ── HERO ── */
        .hero {
            padding: 190px 5% 240px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: #0d1b16 url('../webinar.webp') center/cover no-repeat;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.7) 100%);
            z-index: 0;
        }
        .hero-inner { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; }

        .hero h1 {
            font-family: 'Inter', sans-serif;
            font-size: 2.7rem; font-weight: 800;
            color: #ffffff; line-height: 1.15; margin-bottom: 28px;
            text-shadow: 2px 4px 15px rgba(0,0,0,.6);
        }
        .hero h1 em { font-style: normal; color: var(--teal-light); }
        .hero-title-line { display: block; }
        .hero-title-accent { color: #e8622c; }
        .hero-sub {
            font-size: 1.2rem; color: rgba(255,255,255,.9);
            line-height: 1.7; max-width: 600px; margin: 0 auto 50px;
            text-shadow: 1px 2px 8px rgba(0,0,0,.5);
        }

        /* Tarih + Saat */
        .webinar-when-wrap { position: relative; display: inline-block; margin-bottom: 42px; }
        .webinar-when {
            display: inline-flex; align-items: center; gap: 12px;
            background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
            -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
            border-radius: 50px; padding: 14px 30px;
            font-size: 1.1rem; font-weight: 700; color: #ffffff;
            cursor: pointer; font-family: 'Inter', sans-serif; transition: .3s;
        }
        .webinar-when:hover { background: rgba(255,255,255,.22); }
        .webinar-when i { color: var(--teal-light); font-size: 1rem; }
        .webinar-when-caret { font-size: .8rem !important; transition: transform .3s; }

        /* Aktif bir webinar tarihi yokken gösterilen "takipte kalın" mesajı;
           kutu/pill görünümü yok, düz metin olarak ve turuncu butonun bir
           üst satırında, tam genişlikte duruyor (böylece buton alt satıra
           iner). */
        #webinarStayTuned {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            background: none;
            border: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            padding: 0;
            cursor: default;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 1px 2px 10px rgba(0,0,0,.5);
            line-height: 1.5;
            margin-top: 30px;
            margin-bottom: 28px;
        }
        #webinarStayTuned:hover { background: none; }
        #webinarStayTuned i { font-size: 1.4rem; flex-shrink: 0; color: #ffab7a; }
        .webinar-when.open .webinar-when-caret { transform: rotate(180deg); }

        .webinar-date-dropdown {
            position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
            background: #fff; border: 1px solid var(--border); border-radius: 14px;
            box-shadow: 0 15px 40px rgba(0,0,0,.14); padding: 10px;
            min-width: 320px; max-width: 90vw;
            max-height: 212px; overflow-y: auto;
            display: none; z-index: 50; text-align: left;
            scrollbar-width: thin; scrollbar-color: var(--accent-teal) #eef2f0;
        }
        .webinar-date-dropdown.active { display: block; }
        .webinar-date-dropdown::-webkit-scrollbar { width: 8px; }
        .webinar-date-dropdown::-webkit-scrollbar-track { background: #eef2f0; border-radius: 8px; }
        .webinar-date-dropdown::-webkit-scrollbar-thumb { background: var(--accent-teal); border-radius: 8px; }
        .webinar-date-option {
            display: flex; align-items: center; gap: 12px; width: 100%;
            background: none; border: none; padding: 12px 14px; border-radius: 10px;
            cursor: pointer; font-family: 'Inter', sans-serif; font-size: .95rem;
            font-weight: 600; color: var(--text-dark); text-align: left; transition: .2s;
        }
        .webinar-date-option:hover { background: rgba(1,65,49,.07); color: var(--primary-green); }
        .webinar-date-option i { color: var(--accent-teal); width: 18px; text-align: center; font-size: .9rem; }
        .webinar-date-option.selected { background: var(--primary-green); color: #fff; }
        .webinar-date-option.selected i { color: #fff; }

        /* Geri Sayım */
        .countdown { display: flex; gap: 18px; justify-content: center; margin-bottom: 52px; }
        .cd-block {
            background: #fff; border: 2px solid #cce0d9;
            border-radius: 16px; padding: 18px 24px; min-width: 88px;
            text-align: center; box-shadow: 0 4px 14px rgba(1,65,49,.08);
        }
        .cd-num { font-size: 2.4rem; font-weight: 900; color: var(--primary-green); line-height: 1; display: block; }
        .cd-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #999; margin-top: 6px; display: block; }

        .btn-hero {
            display: inline-block; background: #e8622c; color: #fff;
            font-size: 1.1rem; font-weight: 700; letter-spacing: .5px;
            text-transform: uppercase; padding: 18px 55px; border-radius: 50px;
            box-shadow: 0 15px 35px rgba(232,98,44,.4); transition: .3s;
            border: none; cursor: pointer; font-family: 'Inter', sans-serif;
        }
        .btn-hero:hover { background: #f07640; transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 45px rgba(232,98,44,.5); }
        .hero-small { color: #aaa; font-size: .83rem; margin-top: 18px; }

        /* ── ORTAK BAŞLIK STİLLERİ (index.html ile aynı) ── */
        .sec-label {
            display: block; font-size: .9rem; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            color: var(--teal-light); text-align: center; margin-bottom: 16px;
        }
        .sec-title {
            font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 800;
            color: var(--primary-green); text-align: center; line-height: 1.18;
            margin-bottom: 70px; letter-spacing: .5px;
        }
        .sec-title em { font-style: normal; color: var(--accent-teal); }

        /* ── KAZANIMLAR ── */
        .outcomes { padding: 110px 5%; background: #fff; }
        .outcomes-inner { max-width: 1100px; margin: 0 auto; }
        .outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .outcome-item {
            display: flex; flex-direction: column; gap: 14px;
            background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px;
            transition: all .3s ease;
        }
        .outcome-item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(1,65,49,.1); }
        .outcome-icon {
            flex-shrink: 0; width: 44px; height: 44px;
            background: var(--primary-green); border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
        }
        .outcome-icon i { color: var(--teal-light); font-size: 1.1rem; }
        .outcome-text h4 { font-size: .97rem; font-weight: 800; color: var(--text-dark); margin-bottom: 7px; }
        .outcome-text p { font-size: .87rem; color: var(--text-gray); line-height: 1.6; }

        /* ── KİMLER İÇİN ── */
        .for-whom { padding: 110px 5%; background: var(--bg); }
        .for-whom-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
        .for-whom-text .sec-label { text-align: left; }
        .for-whom-text h2 {
            font-family: 'Inter', sans-serif; font-size: 3rem; font-weight: 800;
            color: var(--text-dark); line-height: 1.15; margin-bottom: 24px;
        }
        .for-whom-text h2 em { font-style: normal; color: var(--accent-teal); }
        .for-whom-text p { font-size: 1.05rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 34px; }
        .for-list { display: flex; flex-direction: column; gap: 16px; }
        .for-item {
            display: flex; align-items: center; gap: 16px;
            background: #fff; border: 1px solid var(--border); border-radius: 12px;
            padding: 16px 20px; font-weight: 600; font-size: .95rem; color: var(--text-dark);
            transition: all .3s;
        }
        .for-item:hover { box-shadow: 0 8px 20px rgba(1,65,49,.08); transform: translateX(4px); }
        .for-item i { color: var(--primary-green); font-size: 1rem; width: 22px; text-align: center; }
        .for-item-btn { cursor: pointer; background: var(--primary-green); border-color: var(--primary-green); color: #fff; }
        .for-item-btn i { color: #fff; }
        .for-item-btn:hover { box-shadow: 0 8px 20px rgba(1,65,49,.25); }
        .for-item-btn .for-item-arrow { margin-left: auto; width: auto; transition: transform .3s; }
        .for-item-btn:hover .for-item-arrow { transform: translateX(4px); }
        .for-note {
            margin-top: 26px; padding: 18px 22px;
            background: rgba(1,65,49,.07); border-left: 4px solid var(--primary-green);
            border-radius: 8px; font-size: .92rem; color: var(--text-gray); line-height: 1.6;
        }
        .for-note strong { color: var(--primary-green); }
        .for-stat-stack { display: flex; flex-direction: column; gap: 20px; }
        .stat-card {
            background: #fff; border: 1px solid var(--border); border-radius: 20px;
            padding: 30px 34px; box-shadow: 0 10px 25px rgba(0,0,0,.06);
        }
        .stat-card .num {
            font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 900;
            color: var(--primary-green); line-height: 1; margin-bottom: 8px;
        }
        .stat-card .lbl { font-size: .9rem; color: var(--text-gray); font-weight: 600; }
        .stat-card.accent { background: #eef6f3; border-color: #c0ddd6; }
        .stat-card.accent .num { color: var(--primary-green); }
        .stat-card.accent .lbl { color: var(--text-gray); }

        /* ── KONUŞMACI ── */
        .speaker { padding: 110px 5%; background: #fff; }
        .speaker-inner { max-width: 950px; margin: 0 auto; }
        .speaker-card {
            display: flex; gap: 60px; align-items: center;
            background: var(--bg); border: 1px solid var(--border); border-radius: 30px; padding: 60px;
            box-shadow: 0 10px 30px rgba(0,0,0,.05);
        }
        .speaker-photo { flex-shrink: 0; }
        .speaker-img {
            width: 170px; height: 170px; border-radius: 50%;
            object-fit: cover; border: 6px solid var(--white);
            box-shadow: 0 15px 35px rgba(1,65,49,.2);
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-green) 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 4rem; color: rgba(255,255,255,.4);
        }
        .speaker-img.has-photo { font-size: 0; }
        .speaker-info { flex: 1; }
        .speaker-role {
            font-size: .85rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px; display: block;
        }
        .speaker-name {
            font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800;
            color: var(--text-dark); margin-bottom: 18px; line-height: 1.2;
        }
        .speaker-bio { font-size: 1rem; color: var(--text-gray); line-height: 1.75; margin-bottom: 26px; }
        .speaker-tags { display: flex; gap: 10px; flex-wrap: wrap; }
        .speaker-tag {
            background: rgba(1,65,49,.08); color: var(--primary-green);
            font-size: .82rem; font-weight: 700; padding: 8px 18px; border-radius: 50px;
        }

        /* ── SOSYAL KANIT ── */
        .social-proof { padding: 110px 5%; background: var(--primary-green); }
        .sp-inner { max-width: 1100px; margin: 0 auto; }
        .sp-numbers {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
            background: rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; margin-bottom: 80px;
        }
        .sp-num-item { background: rgba(255,255,255,.06); text-align: center; padding: 40px 24px; }
        .sp-num-item .big {
            font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 900;
            color: var(--teal-light); line-height: 1; display: block; margin-bottom: 12px;
        }
        .sp-num-item .desc { font-size: .88rem; color: rgba(255,255,255,.65); font-weight: 600; }
        .sp-unis-title {
            font-size: .85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(255,255,255,.5); text-align: center; margin-bottom: 28px;
        }
        .sp-unis { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
        .sp-uni-chip {
            background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
            border-radius: 50px; padding: 12px 24px; font-size: .85rem; font-weight: 700;
            color: rgba(255,255,255,.85); transition: .3s;
        }
        .sp-uni-chip:hover { background: rgba(255,255,255,.18); }

        /* ── CTA BANNER ── */
        .cta-banner { padding: 110px 5%; background: var(--bg); text-align: center; }
        .cta-banner-inner { max-width: 700px; margin: 0 auto; }
        .cta-urgency {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,90,60,.1); border: 1px solid rgba(255,90,60,.25);
            color: #c0392b; font-size: .82rem; font-weight: 700; letter-spacing: 1px;
            text-transform: uppercase; padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
        }
        .cta-banner h2 {
            font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 800;
            color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
            text-transform: uppercase; letter-spacing: .5px;
        }
        .cta-banner h2 em { font-style: normal; color: var(--accent-teal); }
        .cta-banner p { font-size: 1.1rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 40px; }
        .btn-cta-solid {
            display: inline-block; background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
            color: #fff; font-size: 1.1rem; font-weight: 700; letter-spacing: .5px;
            text-transform: uppercase; padding: 18px 55px; border-radius: 50px; border: none;
            cursor: pointer; transition: all .3s ease;
            box-shadow: 0 15px 30px rgba(1,65,49,.3); font-family: 'Inter', sans-serif;
        }
        .btn-cta-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(1,65,49,.4); }

        /* ── FORM ── */
        .form-section {
            padding: 110px 5% 120px;
            background: radial-gradient(ellipse at 65% 40%, #016148 0%, var(--primary-green) 55%, #012b22 100%);
            position: relative; overflow: hidden;
        }
        .form-section::before {
            content: ''; position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        .form-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
        .form-inner h2 {
            font-family: 'Inter', sans-serif; font-size: 3rem; font-weight: 800;
            color: #fff; line-height: 1.2; margin-bottom: 18px;
            text-shadow: 2px 4px 15px rgba(0,0,0,.4);
        }
        .form-inner h2 em { font-style: normal; color: var(--teal-light); }
        .form-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 46px; line-height: 1.7; }
        .reg-card {
            background: #fff; border-radius: 24px; padding: 52px 56px;
            box-shadow: 0 30px 60px rgba(0,0,0,.25); text-align: left;
        }
        .reg-card-title { font-size: 1.4rem; font-weight: 800; color: var(--primary-green); margin-bottom: 8px; }
        .reg-card-sub { font-size: .93rem; color: var(--text-gray); margin-bottom: 30px; line-height: 1.55; }
        .fg { margin-bottom: 20px; }
        .fg label {
            display: block; font-size: .82rem; font-weight: 700; color: var(--text-dark);
            margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px;
        }
        .fg label .req { color: #e53935; margin-left: 2px; }
        .fg input[type="text"],
        .fg input[type="tel"],
        .fg select {
            width: 100%; height: 52px; border: 1.5px solid #cfdbd7; border-radius: 12px;
            padding: 0 18px; font-size: .95rem; color: #222; background: #fafcfc;
            outline: none; transition: border-color .25s, box-shadow .25s;
            font-family: 'Inter', sans-serif; appearance: none;
        }
        .fg input[type="text"]:focus,
        .fg input[type="tel"]:focus,
        .fg select:focus { border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(1,65,49,.08); background: #fff; }
        .select-wrap { position: relative; }
        .select-wrap::after { content:'\f078'; font-family:'Font Awesome 6 Free'; font-weight:900; position:absolute; right:16px; top:50%; transform:translateY(-50%); color:var(--accent-teal); font-size:.78rem; pointer-events:none; }
        .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .reg-submit {
            width: 100%; height: 56px; background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
            color: #fff; border: none; border-radius: 50px; font-size: 1rem; font-weight: 700;
            letter-spacing: .5px; cursor: pointer; transition: all .3s ease; margin-top: 10px;
            font-family: 'Inter', sans-serif; text-transform: uppercase;
            box-shadow: 0 10px 25px rgba(1,65,49,.25);
        }
        .reg-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(1,65,49,.35); }
        .reg-note { text-align: center; margin-top: 16px; color: #8a9e99; font-size: .83rem; }
        .reg-note i { margin-right: 5px; }

        /* ── MOBILE MENU ── */
        .mobile-menu-overlay { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: var(--primary-green); z-index: 2000; transition: .5s cubic-bezier(.77,.2,.05,1); display: flex; flex-direction: column; padding: 40px 10% 80px; overflow-y: auto; }
        .mobile-menu-overlay.active { left: 0; }
        .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
        .close-mobile-menu { color: #fff; font-size: 2.5rem; cursor: pointer; }
        .mobile-nav-list { display: flex; flex-direction: column; gap: 20px; }
        .mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 15px; }
        .mobile-nav-link { color: #fff; font-size: 1.4rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
        .mobile-dropdown { max-height: 0; overflow: hidden; transition: max-height .3s; padding-left: 20px; background: rgba(0,0,0,.1); border-radius: 10px; }
        .mobile-dropdown.active { max-height: 500px; margin-top: 15px; padding: 15px 20px; }
        .mobile-dropdown li { margin-bottom: 12px; }
        .mobile-dropdown li a { color: #cfe9e5; font-size: 1.05rem; font-weight: 500; }
        .mobile-auth-btns { margin-top: 40px; display: flex; flex-direction: column; gap: 15px; }
        .mobile-auth-btns .btn-auth { text-align: center; padding: 15px; color: #fff; border-color: rgba(255,255,255,.5); }

        /* ── FOOTER ── */
        footer { background: #1a1e22; color: #b0b0b0; padding: 80px 5% 60px; }
        .footer-content { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.5fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
        .footer-col h4 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 25px; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #b0b0b0; font-size: .95rem; font-weight: 600; transition: .3s; }
        .footer-col ul li a:hover { color: var(--accent-teal); padding-left: 5px; }
        .footer-logo { width: 210px; display: block; margin-top: -35px; margin-left: -45px; margin-bottom: 15px; }
        .footer-col:first-child { display: flex; flex-direction: column; align-items: flex-start; }
        .miami-address { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
        .miami-address p { font-size: .9rem; line-height: 1.6; color: #999; }
        .footer-plus-icon { color: var(--teal-light); font-size: 3rem; opacity: .8; font-weight: bold; transform: rotate(15deg); display: inline-block; margin-top: -10px; }
        .footer-socials { display: flex; gap: 12px; margin-top: 30px; }
        .footer-socials a { width: 45px; height: 45px; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 1.3rem; transition: .3s; }
        .footer-socials a:hover { transform: translateY(-3px); background: var(--accent-teal); }

        /* ── ÖNCEKİ WEBİNARLARIMIZ ── */
        .prev-webinars { padding: 110px 5%; background: #fff; }
        .prev-webinars-inner { max-width: 1120px; margin: 0 auto; }
        .pw-single { max-width: 720px; margin: 0 auto; }
        .pw-card {
            background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
            overflow: hidden; transition: all .3s ease;
        }
        .pw-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(1,65,49,.1); }
        .pw-video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; display: block; cursor: pointer; }
        .pw-video-wrap iframe, .pw-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
        .pw-video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .4s ease; }
        .pw-video-wrap:hover .pw-video-thumb { transform: scale(1.04); filter: brightness(.85); }
        .pw-play-btn {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 74px; height: 74px; border-radius: 50%;
            background: rgba(232,98,44,.92); color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; padding-left: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,.35);
            transition: transform .3s ease, background .3s ease;
        }
        .pw-video-wrap:hover .pw-play-btn { transform: translate(-50%, -50%) scale(1.12); background: #e8622c; }
        .pw-card-body { padding: 18px 20px; }
        .pw-card-body h4 { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
        .pw-date { font-size: .85rem; color: var(--text-gray); display: flex; align-items: center; gap: 6px; }
        .pw-date i { color: var(--accent-teal); }

        /* ── RESPONSIVE ── */
        @media (max-width: 992px) {
            .nav-center, .nav-right { display: none; }
            .hamburger-menu { display: block !important; position: relative; z-index: 1001; }
            .hero { padding: 130px 5% 160px; }
            .hero h1 { font-size: 2.6rem; }
            .countdown { gap: 10px; }
            .cd-block { min-width: 68px; padding: 14px 16px; }
            .cd-num { font-size: 1.9rem; }
            .outcomes { padding: 80px 5%; }
            .outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .for-whom { padding: 80px 5%; }
            .for-whom-inner { grid-template-columns: 1fr; gap: 50px; }
            .prev-webinars { padding: 80px 5%; }
            .speaker { padding: 80px 5%; }
            .speaker-card { flex-direction: column; align-items: flex-start; padding: 38px; gap: 30px; }
            .social-proof { padding: 80px 5%; }
            .sp-numbers { grid-template-columns: repeat(2, 1fr); }
            .cta-banner { padding: 80px 5%; }
            .form-section { padding: 80px 5% 90px; }
            .sec-title { font-size: 2.2rem; margin-bottom: 50px; }
            .reg-card { padding: 36px 28px; }
            .fg-row { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .footer-col:first-child { align-items: center; }
            .footer-logo { margin: 0 auto 15px; }
            .footer-socials { justify-content: center; }
        }
        @media (max-width: 576px) {
            .hero h1 { font-size: 2.1rem; }
            .hero-sub { font-size: 1rem; }
            .webinar-when { font-size: .92rem; padding: 12px 18px; flex-wrap: wrap; justify-content: center; }
            .cd-num { font-size: 1.6rem; }
            .cd-block { min-width: 58px; padding: 12px 14px; }
            .outcomes-grid { grid-template-columns: 1fr; gap: 14px; }
            .sp-numbers { grid-template-columns: repeat(2, 1fr); }
            .sp-num-item .big { font-size: 2.2rem; }
            .cta-banner h2 { font-size: 2.1rem; }
            .form-inner h2 { font-size: 2.2rem; }
            .btn-hero { padding: 16px 36px; font-size: 1rem; }
            .btn-cta-solid { padding: 16px 36px; font-size: 1rem; }
        }

/* --- WhatsApp float button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            z-index: 1500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: whatsapp-pulse 2.5s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        @keyframes whatsapp-pulse {
            0% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                bottom: 18px;
                right: 18px;
            }
        }
