﻿/* ==========================================
   Alfa Zeka - Site CSS (final)
   - Navbar: desktop tek satır, sığmazsa JS "is-collapsed"
   - Responsive: grid/hero/footer/contact/edu vs eski düzen bozulmadan
   ========================================== */

:root {
    --az-bg: #07060a;
    --az-purple: #8B5CF6;
    --az-purple2: #A78BFA;
    --az-text: rgba(255,255,255,.92);
    --az-muted: rgba(255,255,255,.74);
    --az-card: rgba(255,255,255,.08);
    --az-border: rgba(255,255,255,.14);
    --az-shadow: 0 30px 80px rgba(0,0,0,.55);
    --az-shadow2: 0 18px 50px rgba(0,0,0,.45);
    --az-radius: 18px;
    --az-max: 1200px;
    --az-header-h: 88px;
    --az-header-h-m: 72px;
    --az-pad: 18px;
}
/* =========================
   THEME TOKENS (light default)
   ========================= */
:root {
    --az-bg-page: #ffffff;
    --az-fg: #121212;
    --az-fg-muted: rgba(0,0,0,.62);
    --az-surface: #ffffff;
    --az-surface-2: rgba(0,0,0,.035);
    --az-border-light: rgba(0,0,0,.08);
    --az-shadow-light: 0 14px 40px rgba(0,0,0,.07);
}

/* Dark context tokens (only where .az-dark exists) */
.az-dark {
    --az-bg-page: #07060a;
    --az-fg: rgba(255,255,255,.92);
    --az-fg-muted: rgba(255,255,255,.74);
    --az-surface: rgba(255,255,255,.08);
    --az-surface-2: rgba(255,255,255,.06);
    --az-border-light: rgba(255,255,255,.14);
    --az-shadow-light: 0 18px 50px rgba(0,0,0,.45);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

body {
    font-family: Manrope,Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background: var(--az-bg-page);
    color: var(--az-fg);
}

.az-container {
    max-width: var(--az-max);
    margin: 0 auto;
    padding: 0 var(--az-pad);
}

.az-muted {
    color: var(--az-fg-muted);
}

.az-main {
    min-height: 60vh;
}

/* =========================
   HEADER / NAV
   ========================= */
.az-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.az-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--az-header-h);
    gap: 16px;
}

/* Brand */
.az-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 0 0 auto;
    min-width: 0;
}

.az-brand__img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.az-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.az-brand__title {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .4px;
    color: #111;
}

.az-brand__tagline {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0,0,0,.55);
    margin-top: 2px;
}

/* Links (desktop) */
.az-nav__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Link */
.az-link {
    text-decoration: none;
    color: rgba(0,0,0,.78);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

    .az-link:hover {
        background: rgba(0,0,0,.05);
        color: #000;
    }

/* Dropdown */
.az-dropdown {
    position: relative;
}

.az-dropdown__btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.az-caret {
    font-size: 12px;
    opacity: .7;
}

.az-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    padding: 8px;
    display: none;
    z-index: 2000;
}

    .az-dropdown__menu a {
        display: block;
        padding: 10px 10px;
        border-radius: 10px;
        text-decoration: none;
        color: rgba(0,0,0,.78);
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
    }

        .az-dropdown__menu a:hover {
            background: rgba(0,0,0,.05);
            color: #000;
        }

/* Desktop hover + keyboard */
@media (hover:hover) and (pointer:fine) {
    .az-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 12px;
    }

    .az-dropdown:hover .az-dropdown__menu,
    .az-dropdown:focus-within .az-dropdown__menu {
        display: block;
    }
}

/* Burger */
.az-burger {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    flex: 0 0 auto;
}

    .az-burger:hover {
        background: rgba(0,0,0,.05);
    }

    .az-burger span {
        display: block;
        height: 2px;
        margin: 6px 10px;
        background: rgba(0,0,0,.75);
        border-radius: 2px;
    }

/* Lang buttons */
.az-langBtn {
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    color: rgba(0,0,0,.75);
    font-weight: 900;
    padding: 8px 10px;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
}

    .az-langBtn:hover {
        background: rgba(0,0,0,.04);
        color: #000;
    }

/* =========================
   NAV: JS collapse mode
   ========================= */
.az-header.is-collapsed .az-nav {
    height: var(--az-header-h-m);
}

.az-header.is-collapsed .az-burger {
    display: block;
}

/* Drawer menu */
.az-header.is-collapsed .az-nav__links {
    position: fixed;
    top: var(--az-header-h-m);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 14px var(--az-pad);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    white-space: normal;
    overflow: auto;
    max-height: calc(100vh - var(--az-header-h-m));
    z-index: 1500;
}

    .az-header.is-collapsed .az-nav__links.open {
        display: flex;
    }

/* Dropdown inside drawer */
.az-header.is-collapsed .az-dropdown__menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 10px;
    display: none;
    min-width: 0;
}

.az-header.is-collapsed .az-dropdown.open .az-dropdown__menu {
    display: block;
}

/* Ultra-small safety fallback (JS fail etse bile burger görünür) */
@media (max-width:520px) {
    .az-burger {
        display: block;
    }

    .az-nav {
        height: var(--az-header-h-m);
    }

    .az-nav__links {
        display: none;
    }
}

/* =========================
   HOME HERO
   ========================= */
.az-homehero {
    position: relative;
    min-height: clamp(520px,74vh,860px);
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.az-homehero__slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.az-homehero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateZ(0) scale(1.05);
    transition: opacity 900ms ease, transform 6500ms ease;
    z-index: 0;
    background-color: #101014;
    will-change: opacity,transform;
    backface-visibility: hidden;
}

    .az-homehero__slide.is-active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }

.az-homehero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(1100px 650px at 18% 30%, rgba(0,0,0,.10), rgba(0,0,0,.62)), linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25));
}

/* İçerik güvenli padding+max */
.az-homehero__inner {
    position: relative;
    z-index: 3;
    max-width: var(--az-max);
    margin: 0 auto;
    padding: 120px var(--az-pad) 88px;
    display: flex;
    align-items: flex-start;
}


/* =========================================
   HOTFIX: If markup contains typo "az-homeero__inner"
   apply the same layout rules as az-homehero__inner
   (Design unchanged; prevents hero layout breaking)
   ========================================= */
.az-homeero__inner {
    position: relative;
    z-index: 3;
    max-width: var(--az-max);
    margin: 0 auto;
    padding: 120px var(--az-pad) 88px;
    display: flex;
    align-items: flex-start;
}

@media (max-width:920px) {
    .az-homeero__inner {
        padding: 78px var(--az-pad) 64px;
        justify-content: center;
    }
}

.az-homehero__copy {
    max-width: 820px;
}

.az-homehero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.86);
    font-weight: 700;
    letter-spacing: .35px;
    font-size: 12px;
    margin-bottom: 16px;
}

.az-homehero__title {
    margin: 0 0 14px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.02;
    font-size: clamp(40px,4.8vw,66px);
    text-shadow: 0 20px 55px rgba(0,0,0,.35);
}

.az-homehero__subtitle {
    margin: 0 0 22px;
    max-width: 680px;
    color: rgba(255,255,255,.82);
    font-size: 16.8px;
    line-height: 1.7;
}
/* HOME HERO – better contrast */
.az-homehero__kicker {
    background: rgba(0,0,0,.28);
    border-color: rgba(255,255,255,.22);
    color: rgba(255,255,255,.88);
    backdrop-filter: blur(6px);
}

.az-homehero__subtitle {
    color: rgba(255,255,255,.86);
}

.az-homehero__title {
    text-shadow: 0 18px 55px rgba(0,0,0,.45);
}

.az-homehero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Anim */
@keyframes azFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0,18px,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.az-homehero__copy > * {
    opacity: 0;
    will-change: transform,opacity;
    animation: azFadeUp 1150ms cubic-bezier(.16,1,.3,1) forwards;
}

.az-homehero__copy .az-homehero__kicker {
    animation-delay: 140ms;
}

.az-homehero__copy .az-homehero__title {
    animation-delay: 280ms;
}

.az-homehero__copy .az-homehero__subtitle {
    animation-delay: 430ms;
}

.az-homehero__copy .az-homehero__cta {
    animation-delay: 600ms;
}

@media (prefers-reduced-motion:reduce) {
    .az-homehero__copy > * {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

/* Buttons */
.az-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14.5px;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

    .az-btn2:hover {
        transform: translateY(-1px);
    }

.az-btn2--primary {
    background: #22c55e;
    color: #07130b;
    box-shadow: 0 12px 30px rgba(34,197,94,.25);
}

    .az-btn2--primary:hover {
        background: #1fb456;
    }
/* Base styles for light surfaces */
.az-btn2--ghost {
    background: rgba(255,255,255,.88);
    color: #101114;
    border-color: rgba(0,0,0,.10);
    box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

    .az-btn2--ghost:hover {
        background: rgba(255,255,255,.96);
        border-color: rgba(0,0,0,.14);
    }

.az-btn2--soft {
    background: rgba(0,0,0,.09);
    color: #111;
    border-color: rgba(0,0,0,.15);
}

    .az-btn2--soft:hover {
        background: rgba(0,0,0,.13);
    }



/* =========================
   Buttons – dark surfaces override
   (Only in dark sections / banners / home hero)
   ========================= */
.az-dark .az-btn2--ghost,
.az-banner .az-btn2--ghost,
.az-homehero .az-btn2--ghost {
    color: #fff;
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    box-shadow: none;
}

    .az-dark .az-btn2--ghost:hover,
    .az-banner .az-btn2--ghost:hover,
    .az-homehero .az-btn2--ghost:hover {
        background: rgba(255,255,255,.14);
        border-color: rgba(255,255,255,.30);
    }

/* Soft button on dark surfaces */
.az-dark .az-btn2--soft,
.az-banner .az-btn2--soft,
.az-homehero .az-btn2--soft {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.22);
}

    .az-dark .az-btn2--soft:hover,
    .az-banner .az-btn2--soft:hover,
    .az-homehero .az-btn2--soft:hover {
        background: rgba(255,255,255,.18);
    }

/* =========================
   SECTIONS / TYPO
   ========================= */
.az-section {
    padding: 56px 0;
}

.az-h2 {
    font-size: 28px;
    margin: 0 0 10px;
    letter-spacing: -.2px;
}

.az-p {
    color: rgba(0,0,0,.68);
    line-height: 1.65;
    margin: 0;
}

.az-dark .az-p {
    color: rgba(255,255,255,.78);
}
/* Cards */
.az-grid3 {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.az-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,.07);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .az-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 55px rgba(0,0,0,.10);
    }

.az-card__icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.az-card__title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.2px;
}

.az-card__text {
    margin: 0;
    color: rgba(0,0,0,.64);
    line-height: 1.65;
}
/* =========================
   CARDS – DARK CONTEXT
   ========================= */
.az-dark .az-card,
.az-dark .az-step,
.az-dark .az-infoCard,
.az-dark .az-eduCard,
.az-dark .az-eduModule,
.az-dark .az-faq__item,
.az-dark .az-contactCard,
.az-dark .az-contact__form {
    background: var(--az-surface);
    border-color: var(--az-border-light);
    box-shadow: var(--az-shadow-light);
}

    .az-dark .az-card__text,
    .az-dark .az-step p,
    .az-dark .az-infoCard p,
    .az-dark .az-infoCard ul,
    .az-dark .az-eduCard__text,
    .az-dark .az-eduHero__text,
    .az-dark .az-eduModule p,
    .az-dark .az-faq__item p,
    .az-dark .az-contact__subtitle,
    .az-dark .az-contact__note {
        color: rgba(255,255,255,.74);
    }

    .az-dark .az-card__title,
    .az-dark .az-step h3,
    .az-dark .az-infoCard h3,
    .az-dark .az-eduCard__title,
    .az-dark .az-faq__item summary,
    .az-dark .az-contactCard__title {
        color: rgba(255,255,255,.92);
    }

/* Two column + stats */
.az-two {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    align-items: center;
}

.az-media {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
    background-color: #f3f4f6;
}

.az-stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 10px;
}

.az-stat {
    background: rgba(0,0,0,.035);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    padding: 12px;
}

    .az-stat b {
        display: block;
        font-size: 22px;
    }

    .az-stat span {
        display: block;
        color: rgba(0,0,0,.62);
        font-size: 12.5px;
        margin-top: 4px;
    }

/* =========================
   PAGE BANNER (compact + lighter)
   ========================= */
.az-banner {
    position: relative;
    padding: 40px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.az-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 7, 28, .82),
        rgba(75, 38, 138, .66)
    );
    z-index: 0;
}

.az-banner__wrap {
    position: relative;
    z-index: 1;
}

.az-banner__title {
    font-size: clamp(22px, 2.3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px 0;
    text-shadow: 0 1px 10px rgba(0,0,0,.45);
}

.az-banner__crumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    opacity: .70;
    margin: 0;
}

.az-crumb__link {
    color: #A78BFA;
    text-decoration: none;
}

    .az-crumb__link:hover {
        text-decoration: underline;
    }

/* Breadcrumb: current + separator visibility on dark banner */
.az-crumb__current {
    color: rgba(255,255,255,.90);
}

.az-crumb__sep {
    opacity: .8;
}

@media (max-width: 640px) {
    .az-banner {
        padding: 24px 0;
    }

    .az-banner__title {
        font-size: 22px;
    }
}

/* =========================
   FOOTER
   ========================= */
.az-footer {
    margin-top: 56px;
    background: #0b0b0f;
    color: rgba(255,255,255,.92);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: var(--az-pad);
    padding-right: var(--az-pad);
}

.az-footer__topline {
    height: 1px;
    background: linear-gradient(90deg, rgba(139,92,246,.0), rgba(139,92,246,.55), rgba(167,139,250,.0));
    opacity: .9;
}

.az-footer__grid {
    padding: 38px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 22px;
}

.az-footer__brand {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
}

.az-footer__title {
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: .2px;
}

.az-footer__text {
    margin: 0 0 14px 0;
    color: rgba(255,255,255,.72);
    line-height: 1.55;
}

.az-footer__link {
    display: block;
    text-decoration: none;
    color: rgba(255,255,255,.78);
    padding: 8px 0;
    border-radius: 10px;
}

    .az-footer__link:hover {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.az-footer__line {
    display: block;
    color: rgba(255,255,255,.72);
    padding: 6px 0;
    line-height: 1.55;
    word-break: break-word;
}

.az-footer__contact {
    display: block;
}

    .az-footer__contact:hover {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.az-footer__wa {
    font-weight: 800;
}

.az-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.az-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    transition: all .2s ease;
}

    .az-social:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-2px);
        border-color: rgba(255,255,255,.2);
    }

.az-ico {
    width: 28px;
    height: 28px;
    display: block;
}

.az-ico--invert {
    filter: invert(1);
    opacity: .92;
}

.az-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 16px 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.az-footer__copy {
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

/* =========================
   OTHER PAGES (mevcut yapın korunur)
   ========================= */
/* ABOUT */
.az-about .az-h2 {
    letter-spacing: -.4px;
}

.az-about__top {
    gap: 22px;
}

.az-about__media {
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(0,0,0,.10);
}

.az-about__content {
    max-width: 720px;
}

.az-about__p2 {
    margin-top: 12px;
}

.az-about__stats {
    margin-top: 18px;
}

.az-about__cta {
    margin-top: 16px;
}

.az-about__note {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.6;
}

.az-about__grid {
    margin-top: 16px;
}

.az-about__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

    .az-about__chips .az-btn2--ghost {
        color: #111;
        background: #f5f5f7;
        border: 1px solid #e5e5ea;
        border-radius: 999px;
        padding: 8px 14px;
        font-weight: 500;
    }

.az-dark .az-about__chips .az-btn2--ghost {
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.18);
}

.az-dark .az-about__endnote a {
    color: rgba(255,255,255,.78);
}

    .az-dark .az-about__endnote a:hover {
        color: #fff;
    }

.az-about__endnote {
    margin-top: 16px;
    font-size: 13.5px;
}

    .az-about__endnote a {
        color: rgba(0,0,0,.72);
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

        .az-about__endnote a:hover {
            color: #000;
        }

/* Program page outro: chips + bottom CTA section */
.az-edu__outro {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,.07);
}

/* CORPORATE */
.az-corp__top {
    gap: 22px;
}

.az-corp__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.az-corp__note {
    margin-top: 10px;
    font-size: 13.5px;
}

.az-corp__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 22px;
}

.az-card--hover {
    transition: transform .18s ease, box-shadow .18s ease;
}

    .az-card--hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 55px rgba(0,0,0,.10);
    }

.az-media--soft {
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.az-corp__process {
    padding-top: 10px;
}

.az-corp__steps {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
}

.az-step {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .az-step b {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(34,197,94,.14);
        color: #0b2b17;
        font-weight: 900;
    }

    .az-step h3 {
        margin: 0 0 6px;
        font-size: 16px;
        font-weight: 900;
    }

    .az-step p {
        margin: 0;
        color: rgba(0,0,0,.65);
        line-height: 1.6;
    }

.az-corp__cta2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.az-corp__grid .az-card__text {
    line-height: 1.65;
}

/* EDUCATION */
.az-eduTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.az-eduTop__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.az-eduFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 18px;
}

.az-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    text-decoration: none;
    color: rgba(0,0,0,.72);
    font-weight: 800;
    font-size: 13px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

    .az-chip:hover {
        transform: translateY(-1px);
        background: rgba(0,0,0,.03);
    }

    .az-chip.is-active {
        border-color: rgba(34,197,94,.35);
        box-shadow: 0 12px 30px rgba(34,197,94,.12);
        color: #0b2a18;
    }

.az-eduGrid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.az-eduCard {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 16px 45px rgba(0,0,0,.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .az-eduCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 70px rgba(0,0,0,.10);
    }

.az-eduCard__media {
    height: 170px;
    background-size: cover;
    background-position: center;
    background-color: #0f1216;
}

.az-eduCard__body {
    padding: 16px 16px 18px;
}

.az-eduCard__kicker {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .35px;
    color: rgba(0,0,0,.55);
    margin-bottom: 6px;
}

.az-eduCard__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.4px;
    color: #0f1012;
}

.az-eduCard__text {
    margin: 0;
    color: rgba(0,0,0,.64);
    line-height: 1.65;
}

.az-eduCard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.az-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.06);
    color: rgba(0,0,0,.70);
    font-size: 12.5px;
    font-weight: 800;
}

.az-eduCtaBox {
    margin-top: 22px;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,.07);
    background: linear-gradient(180deg, rgba(34,197,94,.10), rgba(34,197,94,.04));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.az-eduCtaBox__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.az-eduHero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
    align-items: center;
}

.az-eduHero__media {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    background-color: #0f1216;
}

.az-eduHero__title {
    margin: 0 0 10px;
    font-size: clamp(28px,3vw,40px);
    letter-spacing: -0.6px;
    font-weight: 900;
}

.az-eduHero__text {
    margin: 0 0 14px;
    color: rgba(0,0,0,.66);
    line-height: 1.72;
}

.az-eduHero__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.az-eduHero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.az-eduInfo {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.az-infoCard {
    border-radius: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

    .az-infoCard h3 {
        margin: 0 0 8px;
        font-size: 16px;
        font-weight: 900;
    }

    .az-infoCard p {
        margin: 0;
        color: rgba(0,0,0,.64);
        line-height: 1.65;
    }

    .az-infoCard ul {
        margin: 0;
        padding-left: 18px;
        color: rgba(0,0,0,.64);
        line-height: 1.7;
    }

.az-eduGrid--modules {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.az-eduModule {
    border-radius: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.az-eduModule__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.az-eduModule__icon {
    font-size: 20px;
}

.az-eduModule h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
}

.az-eduModule p {
    margin: 0;
    color: rgba(0,0,0,.64);
    line-height: 1.65;
}

.az-faq {
    margin-top: 28px;
}

.az-faq__item {
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    padding: 14px 18px;
    margin-top: 10px;
}

    .az-faq__item summary {
        cursor: pointer;
        font-weight: 900;
        color: #141518;
    }

    .az-faq__item p {
        margin: 10px 0 0;
        color: rgba(0,0,0,.64);
        line-height: 1.65;
    }

/* CONTACT */
.az-contact {
    padding-top: 34px;
}

.az-contact__wrap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

.az-contact__head {
    max-width: 860px;
    margin-bottom: 18px;
}

.az-contact__title {
    font-size: clamp(28px,3.6vw,42px);
    font-weight: 950;
    letter-spacing: -0.8px;
    margin: 0 0 8px;
}

.az-contact__subtitle {
    color: rgba(0,0,0,.64);
    line-height: 1.7;
    margin: 0;
}

.az-contact__ok {
    border: 1px solid rgba(34,197,94,.25);
    background: rgba(34,197,94,.08);
    border-radius: 16px;
    padding: 12px 14px;
    color: #0b2b17;
    font-weight: 800;
}

.az-contact__err {
    border: 1px solid rgba(239,68,68,.25);
    background: rgba(239,68,68,.08);
    border-radius: 16px;
    padding: 12px 14px;
}

.az-contact__form {
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,.08);
    background: linear-gradient(180deg, rgba(34,197,94,.08), rgba(255,255,255,1));
    box-shadow: 0 18px 60px rgba(0,0,0,.08);
}

.az-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.az-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.az-field--full {
    grid-column: 1 / -1;
}

.az-field label {
    position: absolute;
    left: 14px;
    top: 12px;
    font-size: 13px;
    font-weight: 850;
    color: rgba(0,0,0,.55);
    pointer-events: none;
    transform-origin: left top;
    transition: transform .16s ease, top .16s ease, color .16s ease, opacity .16s ease;
    opacity: .95;
}

.az-input {
    width: 100%;
    padding: 18px 14px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.14);
    background: rgba(255,255,255,.92);
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

    .az-input:focus {
        border-color: rgba(34,197,94,.7);
        box-shadow: 0 0 0 4px rgba(34,197,94,.14);
    }

.az-field:focus-within label,
.az-field .az-input:not(:placeholder-shown) ~ label {
    top: 6px;
    transform: scale(.86);
    color: rgba(0,0,0,.70);
}

.az-input--ta {
    resize: vertical;
    min-height: 150px;
}

.az-contact__cta {
    margin-top: 28px;
    padding-top: 6px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.az-contact__note {
    margin-top: 22px;
    padding-top: 6px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(0,0,0,.60);
}

.az-contactCard {
    border-radius: 22px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    box-shadow: 0 14px 45px rgba(0,0,0,.07);
    position: sticky;
    top: calc(var(--az-header-h) + 14px);
}

.az-contactCard__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -0.3px;
}

.az-contactCard__row {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,.06);
}

    .az-contactCard__row:first-of-type {
        border-top: 0;
    }

.az-contactCard__k {
    font-weight: 900;
    color: rgba(0,0,0,.7);
    min-width: 78px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.az-contactMap {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

    .az-contactMap iframe {
        width: 100%;
        height: 220px;
        border: 0;
        display: block;
    }

.az-contactCard__v a {
    color: rgba(0,0,0,.78);
    font-weight: 900;
    text-decoration: none;
}

    .az-contactCard__v a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
        color: #000;
    }

.az-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.az-val {
    font-size: 12.5px;
    font-weight: 700;
    color: #b91c1c;
    min-height: 16px;
}

/* Floating WhatsApp */
.az-waFloat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: #22c55e;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,.08);
    transition: transform .18s ease;
}

    .az-waFloat:hover {
        transform: translateY(-2px);
    }

    .az-waFloat .az-ico {
        width: 52px;
        height: 52px;
        display: block;
        filter: invert(1);
        opacity: .95;
    }

/* =========================
   RESPONSIVE (eski düzeni geri getirir)
   ========================= */
@media (max-width:920px) {
    .az-brand__img {
        height: 40px;
    }

    .az-brand__title {
        font-size: 16px;
    }

    .az-brand__tagline {
        font-size: 11px;
    }

    /* Hero */
    .az-homehero__inner {
        padding: 78px var(--az-pad) 64px;
        justify-content: center;
    }

    .az-homehero__copy {
        text-align: center;
    }

    .az-homehero__cta {
        justify-content: center;
    }

    /* Layout */
    .az-grid3 {
        grid-template-columns: 1fr;
    }

    .az-two {
        grid-template-columns: 1fr;
    }

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

    /* Banner */
    .az-banner {
        padding: 32px 0;
    }

    .az-banner__wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .az-banner__title {
        font-size: 28px;
    }

    .az-banner__crumb {
        font-size: 12.5px;
    }

    /* Footer */
    .az-footer__grid {
        grid-template-columns: 1fr;
        padding: 28px 0;
        gap: 18px;
    }

    /* Corp/Edu */
    .az-corp__grid {
        grid-template-columns: 1fr;
    }

    .az-corp__steps {
        grid-template-columns: 1fr;
    }

    .az-eduGrid {
        grid-template-columns: 1fr;
    }

    .az-eduHero {
        grid-template-columns: 1fr;
    }

    .az-eduInfo {
        grid-template-columns: 1fr;
    }

    .az-eduGrid--modules {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .az-contact__wrap {
        grid-template-columns: 1fr;
    }

    .az-contactCard {
        position: static;
    }
}

@media (max-width:680px) {
    .az-form__grid {
        grid-template-columns: 1fr;
    }

    .az-contact__cta {
        justify-content: center;
    }

    .az-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

        .az-footer__bottom .az-footer__social {
            justify-content: flex-start;
            flex-wrap: wrap;
        }

    .az-waFloat {
        right: 14px;
        bottom: 14px;
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
}

.az-eduQuickInfo {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 18px;
    background: rgba(0,0,0,.02);
}

.az-eduQuickInfo__item {
    font-size: 13px;
    color: rgba(0,0,0,.72);
    font-weight: 650;
}

.az-eduSectionHead {
    margin-top: 36px;
}

    .az-eduSectionHead .az-p {
        margin-top: 6px;
    }

.az-infoNote {
    margin-top: 10px;
    color: rgba(0,0,0,.62);
    font-size: 13.5px;
    line-height: 1.6;
}

.az-eduModule__media {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: #0f1216;
    border: 1px solid rgba(0,0,0,.06);
    margin-bottom: 12px;
}

.az-eduModule__body {
    display: block;
}

.az-eduMeta {
    margin-top: 10px;
    color: rgba(0,0,0,.62);
    font-size: 13.2px;
    line-height: 1.6;
}

.az-eduActions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* =========================================================
   DARK MODE (Home Hero): make HERO texts BLACK (user request)
   - Only affects .az-homehero area in dark mode
   - Leaves the rest of dark theme intact
   ========================================================= */

/* If you use prefers-color-scheme */
@media (prefers-color-scheme: dark) {
    /* Lighten hero overlay so black text reads well on bright photos */
    .az-homehero__overlay {
        background: radial-gradient(1100px 650px at 18% 30%, rgba(255,255,255,.52), rgba(255,255,255,.10)), linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
    }

    /* Texts -> black */
    .az-homehero__kicker {
        background: rgba(255,255,255,.62);
        border-color: rgba(0,0,0,.14);
        color: rgba(0,0,0,.78);
        backdrop-filter: blur(8px);
    }

    .az-homehero__title {
        color: rgba(0,0,0,.90);
        text-shadow: 0 14px 40px rgba(255,255,255,.28);
    }

    .az-homehero__subtitle {
        color: rgba(0,0,0,.74);
    }

    /* Buttons in hero -> readable on lightened overlay */
    .az-homehero .az-btn2--ghost {
        background: rgba(255,255,255,.78);
        color: rgba(0,0,0,.84);
        border-color: rgba(0,0,0,.12);
        box-shadow: 0 10px 26px rgba(0,0,0,.10);
    }

        .az-homehero .az-btn2--ghost:hover {
            background: rgba(255,255,255,.90);
            border-color: rgba(0,0,0,.16);
        }

    .az-homehero .az-btn2--soft {
        background: rgba(255,255,255,.58);
        color: rgba(0,0,0,.84);
        border-color: rgba(0,0,0,.10);
    }

        .az-homehero .az-btn2--soft:hover {
            background: rgba(255,255,255,.70);
        }
}

/* If you use .az-dark class (manual dark toggle) */
.az-dark .az-homehero__overlay {
    background: radial-gradient(1100px 650px at 18% 30%, rgba(255,255,255,.52), rgba(255,255,255,.10)), linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
}

.az-dark .az-homehero__kicker {
    background: rgba(255,255,255,.62);
    border-color: rgba(0,0,0,.14);
    color: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
}

.az-dark .az-homehero__title {
    color: rgba(0,0,0,.90);
    text-shadow: 0 14px 40px rgba(255,255,255,.28);
}

.az-dark .az-homehero__subtitle {
    color: rgba(0,0,0,.74);
}

.az-dark .az-homehero .az-btn2--ghost {
    background: rgba(255,255,255,.78);
    color: rgba(0,0,0,.84);
    border-color: rgba(0,0,0,.12);
    box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

    .az-dark .az-homehero .az-btn2--ghost:hover {
        background: rgba(255,255,255,.90);
        border-color: rgba(0,0,0,.16);
    }

.az-dark .az-homehero .az-btn2--soft {
    background: rgba(255,255,255,.58);
    color: rgba(0,0,0,.84);
    border-color: rgba(0,0,0,.10);
}

    .az-dark .az-homehero .az-btn2--soft:hover {
        background: rgba(255,255,255,.70);
    }
