/**
 * Haqqımızda — premium layout, cinematic story, bento team
 */

.aze-about-page {
    overflow-x: clip;
}

/* — Hero intro — */
.aze-about-hero {
    padding: clamp(52px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
    background:
        radial-gradient(circle at 12% 18%, rgba(29, 111, 220, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 88% 72%, rgba(201, 162, 39, 0.06) 0%, transparent 38%),
        linear-gradient(180deg, #fff 0%, var(--aze-surface) 100%);
    border-bottom: 1px solid var(--aze-border);
}

.aze-about-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.aze-about-hero__eyebrow,
.aze-story-head__eyebrow,
.aze-team-head__eyebrow,
.aze-about-trust__eyebrow {
    margin: 0 0 12px;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aze-blue);
}

.aze-about-hero__title {
    margin: 0 0 16px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.875rem, 4.2vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--aze-navy);
}

.aze-about-hero__lead {
    margin: 0 0 24px;
    font-size: clamp(1.0625rem, 0.25vw + 1rem, 1.2rem);
    line-height: 1.85;
    color: var(--aze-text-muted);
    max-width: 54ch;
}

.aze-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.aze-about-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--aze-font-display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aze-about-hero__btn--primary {
    background: var(--aze-blue);
    color: #fff;
    border: 1px solid var(--aze-blue);
    box-shadow: 0 10px 28px rgba(29, 111, 220, 0.28);
}

.aze-about-hero__btn--primary:hover {
    background: var(--aze-blue-dark);
    color: #fff;
    transform: translateY(-2px);
}

.aze-about-hero__btn--ghost {
    background: #fff;
    color: var(--aze-navy);
    border: 1px solid var(--aze-border);
}

.aze-about-hero__btn--ghost:hover {
    background: var(--aze-blue-soft);
    border-color: rgba(29, 111, 220, 0.28);
    color: var(--aze-blue);
}

.aze-about-hero__btn i,
.aze-about-hero__btn .fa,
.aze-about-hero__btn .fas {
    color: inherit;
    margin-right: 0;
    font-size: 0.95em;
}

.aze-about-hero__btn--ghost i {
    color: var(--aze-blue);
}

.aze-about-hero__btn--ghost:hover i {
    color: var(--aze-blue-dark);
}

.aze-about-hero__btn--primary i {
    color: #fff;
}

.aze-about-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aze-about-hero__stats li {
    flex: 1 1 120px;
    padding: 14px 16px;
    border-radius: var(--aze-radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
}

.aze-about-hero__stats strong {
    display: block;
    font-family: var(--aze-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--aze-navy);
    line-height: 1.1;
    margin-bottom: 4px;
}

.aze-about-hero__stats span {
    font-size: 13px;
    line-height: 1.45;
    color: var(--aze-text-muted);
}

.aze-about-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aze-about-hero__frame {
    border-radius: calc(var(--aze-radius) + 6px);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.8);
    line-height: 0;
    aspect-ratio: 4 / 3;
}

.aze-about-hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aze-about-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.aze-about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--aze-radius);
    background: #fff;
    border: 1px solid var(--aze-border);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aze-about-value:hover {
    transform: translateY(-3px);
    box-shadow: var(--aze-shadow-lg);
    border-color: rgba(29, 111, 220, 0.22);
}

.aze-about-value__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--aze-blue-soft) 0%, rgba(29, 111, 220, 0.14) 100%);
    color: var(--aze-blue);
    font-size: 20px;
}

.aze-about-value h3 {
    margin: 0;
    font-family: var(--aze-font-display);
    font-size: clamp(1rem, 1.2vw, 1.0625rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--aze-navy);
}

/* — İnkişaf yolumuz (animated road journey) — */
.aze-journey-section {
    padding: clamp(36px, 5vw, 64px) 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(29, 111, 220, 0.08) 0%, transparent 38%),
        linear-gradient(180deg, #fff 0%, var(--aze-surface) 100%);
    border-top: 1px solid var(--aze-border);
    border-bottom: 1px solid var(--aze-border);
    overflow: clip;
}

.aze-journey-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: clamp(14px, 2.5vw, 22px);
}

.aze-journey-head__eyebrow {
    margin: 0 0 10px;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aze-blue);
}

.aze-journey-head__title {
    margin: 0 0 8px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.75rem, 3.8vw, 2.625rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--aze-navy);
    flex: 1 1 100%;
}

.aze-journey-head__sub {
    margin: 0;
    max-width: 52ch;
    font-size: clamp(0.9375rem, 0.2vw + 0.9rem, 1.0625rem);
    line-height: 1.65;
    color: var(--aze-text-muted);
    flex: 1 1 280px;
}

.aze-journey-head__count {
    font-family: var(--aze-font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    font-weight: 800;
    color: var(--aze-navy);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.aze-journey-head__current {
    display: inline-block;
    min-width: 1.6ch;
    text-align: center;
    color: var(--aze-blue);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
}

.aze-journey-head__current.is-ticking {
    animation: aze-journey-counter-tick 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.aze-journey-head__sep {
    opacity: 0.35;
    font-weight: 600;
}

@keyframes aze-journey-counter-tick {
    0% { transform: translateY(8px) scale(0.85); opacity: 0; color: var(--aze-gold); }
    60% { transform: translateY(-2px) scale(1.08); }
    100% { transform: translateY(0) scale(1); opacity: 1; color: var(--aze-blue); }
}

@keyframes aze-journey-sheen {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -100% 0; }
}

.aze-journey-theater {
    position: relative;
    padding: clamp(14px, 2vw, 18px);
    border-radius: calc(var(--aze-radius) + 6px);
    background:
        linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow-lg);
    overflow: hidden;
    --journey-pct: 0;
    --journey-ease: cubic-bezier(0.16, 1, 0.3, 1);
    transition: box-shadow 1.4s var(--journey-ease);
}

.aze-journey-theater.is-playing {
    box-shadow:
        var(--aze-shadow-lg),
        0 0 0 1px rgba(29, 111, 220, 0.06),
        0 20px 50px rgba(29, 111, 220, calc(0.06 + var(--journey-pct) * 0.001));
}

.aze-journey-theater.is-playing::after {
    opacity: calc(0.35 + var(--journey-pct) * 0.004);
}

.aze-journey-theater::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at calc(8% + var(--journey-pct) * 0.7%) 12%, rgba(29, 111, 220, 0.09) 0%, transparent 42%),
        radial-gradient(circle at calc(92% - var(--journey-pct) * 0.5%) 88%, rgba(201, 162, 39, 0.07) 0%, transparent 38%);
    pointer-events: none;
    transition: opacity 1s ease;
}

.aze-journey-theater::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: aze-journey-sheen 4s ease-in-out infinite;
    pointer-events: none;
}

.aze-journey-progress {
    position: relative;
    z-index: 2;
    height: 3px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(29, 111, 220, 0.08);
    overflow: hidden;
}

.aze-journey-progress__bar {
    position: relative;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--aze-blue) 0%, #60a5fa 60%, var(--aze-gold) 100%);
    box-shadow: 0 0 12px rgba(29, 111, 220, 0.45);
    overflow: hidden;
    will-change: width;
}

.aze-journey-progress__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: translateX(-120%);
    animation: aze-journey-bar-shimmer 2.4s ease-in-out infinite;
}

@keyframes aze-journey-bar-shimmer {
    0%, 100% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
}

.aze-journey-viz {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.aze-journey-viz__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    padding: 0 4px;
    flex-wrap: wrap;
}

.aze-journey-viz__ticker {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 280px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    opacity: 0.7;
}

.aze-journey-viz__ticker-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: aze-journey-ticker 22s linear infinite;
}

.aze-journey-viz__ticker-item {
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aze-text-muted);
    white-space: nowrap;
}

.aze-journey-viz__ticker-item::after {
    content: '·';
    margin-left: 20px;
    opacity: 0.35;
}

@keyframes aze-journey-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.aze-journey-viz__label {
    font-family: var(--aze-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aze-text-muted);
}

.aze-journey-viz__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--aze-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--aze-blue);
}

.aze-journey-viz__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aze-blue);
    box-shadow: 0 0 0 0 rgba(29, 111, 220, 0.45);
    animation: aze-journey-live 2s ease-in-out infinite;
}

@keyframes aze-journey-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(29, 111, 220, 0.45); }
    50% { box-shadow: 0 0 0 8px rgba(29, 111, 220, 0); }
}

.aze-journey-viz__frame {
    position: relative;
    padding-bottom: 8px;
    border-radius: calc(var(--aze-radius) + 2px);
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(29, 111, 220, 0.12);
    overflow: visible;
}

.aze-journey-viz__plot {
    position: relative;
    height: clamp(132px, 20vw, 168px);
    border-radius: inherit;
    overflow: visible;
}

.aze-journey-viz__scan {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(29, 111, 220, 0.5), rgba(201, 162, 39, 0.6), transparent);
    opacity: 0;
    pointer-events: none;
}

.aze-journey-theater.is-playing .aze-journey-viz__scan {
    animation: aze-journey-scan 2.8s ease-in-out 0.3s 1;
}

@keyframes aze-journey-scan {
    0% { top: 0; opacity: 0; }
    8% { opacity: 0.85; }
    92% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

.aze-journey-viz__fx {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.aze-journey-fx__ripple {
    position: absolute;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.55);
    animation: aze-journey-ripple 0.85s ease-out forwards;
}

.aze-journey-fx__chip {
    position: absolute;
    transform: translate(-50%, -100%);
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.88);
    color: var(--aze-gold);
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
    animation: aze-journey-chip 1.1s ease-out forwards;
}

@keyframes aze-journey-ripple {
    0% { transform: scale(0.85); opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}

@keyframes aze-journey-chip {
    0% { opacity: 0; transform: translate(-50%, 4px) scale(0.9); }
    20% { opacity: 1; transform: translate(-50%, -8px) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -28px) scale(0.95); }
}

.aze-journey-viz__dot {
    fill: rgba(29, 111, 220, 0.15);
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 0.5;
    vector-effect: non-scaling-stroke;
    transition: fill 0.5s ease, r 0.35s ease;
}

.aze-journey-viz__dot.is-lit {
    fill: rgba(29, 111, 220, 0.55);
}

.aze-journey-viz__dot.is-active {
    fill: var(--aze-gold);
    animation: aze-journey-dot-pulse 1.2s ease-in-out infinite;
}

@keyframes aze-journey-dot-pulse {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(201, 162, 39, 0.4)); }
    50% { filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.75)); }
}

.aze-journey-viz__plot.is-celebrate::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(29, 111, 220, 0.1) 0%, transparent 30%);
    animation: aze-journey-celebrate 1.5s ease-out;
    pointer-events: none;
}

@keyframes aze-journey-celebrate {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.aze-journey-viz__svg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.aze-journey-viz__grid line {
    stroke: rgba(29, 111, 220, 0.08);
    stroke-width: 0.35;
    vector-effect: non-scaling-stroke;
}

.aze-journey-viz__line-bg {
    fill: none;
    stroke: rgba(29, 111, 220, 0.14);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.aze-journey-viz__line {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 4px rgba(29, 111, 220, 0.35));
    will-change: stroke-dashoffset;
}

.aze-journey-viz__clip-rect {
    /* width driven by rAF — no CSS transition */
}

.aze-journey-viz__area {
    transition: none;
}

.aze-journey-theater.is-traveling .aze-journey-milestone.is-active .aze-journey-milestone__orbit {
    animation: aze-journey-orbit-travel 2.6s var(--journey-ease) infinite;
}

@keyframes aze-journey-orbit-travel {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.88; }
}

.aze-journey-viz__cursor {
    display: none;
}

.aze-journey-viz__axis {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    padding: 0 6px;
    font-family: var(--aze-font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aze-text-muted);
}

.aze-journey-viz__overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px 14px;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 58, 95, 0.94) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(201, 162, 39, 0.15);
    transform: translate(-50%, -50%);
    animation: aze-journey-overlay-in 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.aze-journey-viz__overlay:not([hidden]) .aze-journey-viz__overlay-icon {
    animation: aze-journey-arrow 1.4s ease-in-out infinite;
}

@keyframes aze-journey-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.aze-journey-viz__overlay[hidden] {
    display: none;
}

@keyframes aze-journey-overlay-in {
    from { opacity: 0; transform: translate(-50%, -46%) scale(0.96); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.aze-journey-viz__overlay-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.9375rem;
    font-weight: 800;
}

.aze-journey-viz__overlay-title {
    flex: 1 1 auto;
    margin: 0;
    min-width: 0;
    font-family: var(--aze-font-display);
    font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aze-journey-viz__overlay-replay {
    flex: 0 0 auto;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.aze-journey-viz__overlay-replay:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
}

.aze-journey-track {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.aze-journey-track.is-chart-mounted .aze-journey-milestone {
    pointer-events: auto;
}

.aze-journey-milestone {
    position: absolute;
    left: var(--node-x, 0%);
    top: var(--node-y, 50%);
    transform: translate(-50%, -14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.aze-journey-milestone__pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    appearance: none;
    cursor: pointer;
    transition: transform 0.65s var(--journey-ease);
}

.aze-journey-milestone__node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(29, 111, 220, 0.25);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.aze-journey-milestone__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border: 2.5px solid var(--aze-gold);
    border-radius: 50%;
    background: transparent;
    box-shadow:
        0 0 0 3px rgba(201, 162, 39, 0.12),
        0 0 14px rgba(201, 162, 39, 0.28);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    pointer-events: none;
    transition:
        opacity 0.55s var(--journey-ease),
        transform 0.65s var(--journey-ease),
        box-shadow 0.55s var(--journey-ease);
}

.aze-journey-milestone.is-active .aze-journey-milestone__orbit {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: aze-journey-orbit-pulse 2.2s ease-in-out infinite;
}

.aze-journey-milestone.is-passed .aze-journey-milestone__orbit {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
    border-color: rgba(29, 111, 220, 0.45);
    box-shadow: 0 0 0 2px rgba(29, 111, 220, 0.08);
    animation: none;
}

@keyframes aze-journey-orbit-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(201, 162, 39, 0.14),
            0 0 14px rgba(201, 162, 39, 0.28);
    }
    50% {
        box-shadow:
            0 0 0 5px rgba(201, 162, 39, 0.2),
            0 0 20px rgba(201, 162, 39, 0.4);
    }
}

.aze-journey-milestone__index {
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--aze-text-muted);
    line-height: 1;
    transition: color 0.35s ease;
}

.aze-journey-milestone__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 18px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--aze-border);
    font-family: var(--aze-font-display);
    font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
    font-weight: 800;
    color: var(--aze-text-muted);
    line-height: 1;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition:
        opacity 0.55s var(--journey-ease),
        transform 0.65s var(--journey-ease),
        border-color 0.55s var(--journey-ease),
        color 0.55s var(--journey-ease),
        background 0.55s var(--journey-ease);
}

.aze-journey-milestone.is-passed .aze-journey-milestone__node,
.aze-journey-milestone.is-active .aze-journey-milestone__node {
    border-color: var(--aze-blue);
    background: var(--aze-blue-soft);
}

.aze-journey-milestone.is-passed .aze-journey-milestone__index,
.aze-journey-milestone.is-active .aze-journey-milestone__index {
    color: var(--aze-blue);
}

.aze-journey-milestone.is-passed .aze-journey-milestone__year,
.aze-journey-milestone.is-active .aze-journey-milestone__year {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aze-journey-milestone.is-active .aze-journey-milestone__pin {
    transform: translateY(-4px) scale(1.04);
}

.aze-journey-milestone.is-active .aze-journey-milestone__node {
    background: var(--aze-blue);
    border-color: var(--aze-blue);
    box-shadow: 0 0 0 4px rgba(29, 111, 220, 0.14), 0 8px 20px rgba(29, 111, 220, 0.3);
    transform: scale(1.06);
}

.aze-journey-milestone.is-active .aze-journey-milestone__index {
    color: #fff;
}

.aze-journey-milestone.is-active .aze-journey-milestone__year {
    background: var(--aze-navy);
    border-color: var(--aze-navy);
    color: #fff;
}

.aze-journey-milestone__content {
    display: none;
}

.aze-journey-stage {
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.aze-journey-detail {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.65s var(--journey-ease), transform 0.65s var(--journey-ease);
    padding: 0;
    border-radius: calc(var(--aze-radius) + 2px);
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.aze-journey-detail__card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0;
    border-radius: calc(var(--aze-radius) + 2px);
    border: 1px solid rgba(29, 111, 220, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow:
        0 10px 32px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
}

.aze-journey-detail__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 42%),
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%231d6fdc' fill-opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.aze-journey-detail__aside {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 10px;
    background: linear-gradient(180deg, var(--aze-navy) 0%, #1e3a5f 100%);
    color: #fff;
    text-align: center;
}

.aze-journey-detail__aside::after {
    content: '';
    position: absolute;
    top: 12%;
    bottom: 12%;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.aze-journey-detail__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--aze-font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.aze-journey-detail__aside .aze-journey-detail__year {
    font-family: var(--aze-font-display);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #fff;
    background: none;
    padding: 0;
    min-width: 0;
    border-radius: 0;
}

.aze-journey-detail__dots {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.aze-journey-detail__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.aze-journey-detail__dot.is-done {
    background: rgba(255, 255, 255, 0.55);
}

.aze-journey-detail__dot.is-current {
    background: var(--aze-gold);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.65);
}

.aze-journey-detail__phase {
    font-family: var(--aze-font-display);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.2;
}

.aze-journey-detail__pct {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 6px;
}

.aze-journey-detail__ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.aze-journey-detail__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 2.5;
}

.aze-journey-detail__ring-fill {
    fill: none;
    stroke: var(--aze-gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 97;
    transition: stroke-dashoffset 0.9s var(--journey-ease);
}

.aze-journey-detail__pct-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.aze-journey-detail__pct-val small {
    font-size: 7px;
    opacity: 0.75;
    margin-left: 1px;
}

.aze-journey-detail__main {
    position: relative;
    z-index: 1;
    padding: 16px 18px 16px 20px;
    min-width: 0;
}

.aze-journey-detail__main::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--aze-blue) 0%, var(--aze-gold) 100%);
}

.aze-journey-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 8px;
    padding-left: 10px;
}

.aze-journey-detail__tag {
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aze-blue);
}

.aze-journey-detail__year-inline {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--aze-blue-soft);
    border: 1px solid rgba(29, 111, 220, 0.15);
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 800;
    color: var(--aze-blue);
    letter-spacing: 0.06em;
}

.aze-journey-detail__title {
    margin: 0 0 8px;
    padding-left: 10px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.0625rem, 1.9vw, 1.25rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: var(--aze-navy);
}

.aze-journey-detail__body {
    padding-left: 10px;
    font-size: clamp(0.9375rem, 0.15vw + 0.9rem, 1.03125rem);
    line-height: 1.65;
    color: var(--aze-text);
}

.aze-journey-detail__body p {
    margin: 0;
}

.aze-journey-detail.is-visible .aze-journey-detail__reveal {
    animation: aze-journey-reveal 0.75s var(--journey-ease) backwards;
    animation-delay: calc(var(--reveal-i, 0) * 0.07s + 0.04s);
}

@keyframes aze-journey-reveal {
    from { opacity: 0; transform: translateY(10px); filter: blur(3px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.aze-journey-detail.is-finale {
    display: none;
}

.aze-journey-theater.is-complete .aze-journey-stage {
    margin-top: 0;
    display: none;
}

.aze-journey-detail.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aze-journey-detail__empty {
    margin: 0;
    padding: 16px 18px;
    color: var(--aze-text-muted);
    font-size: 1.0625rem;
    border-radius: var(--aze-radius);
    border: 1px dashed var(--aze-border);
    background: var(--aze-surface);
}

@media (max-width: 767px) {
    .aze-journey-detail__card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .aze-journey-detail__aside {
        padding: 12px 8px;
        gap: 4px;
    }

    .aze-journey-detail__pct {
        width: 34px;
        height: 34px;
        margin-top: 4px;
    }

    .aze-journey-detail__main {
        padding: 12px 14px 12px 16px;
    }

    .aze-journey-detail__phase {
        display: none;
    }
}

.aze-journey-milestone__body,
.aze-journey-detail .aze-journey-milestone__body {
    font-size: clamp(0.9375rem, 0.15vw + 0.9rem, 1.03125rem);
    line-height: 1.6;
    color: var(--aze-text);
}

.aze-journey-milestone__body p,
.aze-journey-detail .aze-journey-milestone__body p {
    margin: 0 0 0.65em;
}

.aze-journey-milestone__body p:last-child,
.aze-journey-detail .aze-journey-milestone__body p:last-child {
    margin-bottom: 0;
}

.aze-journey-track:empty::after {
    content: 'Mərhələlər tezliklə əlavə olunacaq.';
    display: block;
    width: 100%;
    padding: 24px;
    border-radius: var(--aze-radius);
    background: var(--aze-surface);
    border: 1px dashed var(--aze-border);
    color: var(--aze-text-muted);
    font-size: 1.0625rem;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .aze-journey-progress__bar,
    .aze-journey-progress__bar::after,
    .aze-journey-viz__line,
    .aze-journey-viz__clip-rect,
    .aze-journey-viz__area,
    .aze-journey-viz__cursor,
    .aze-journey-viz__cursor-trail,
    .aze-journey-viz__ticker-track,
    .aze-journey-viz__scan,
    .aze-journey-theater::after,
    .aze-journey-detail,
    .aze-journey-detail__reveal,
    .aze-journey-milestone__pin,
    .aze-journey-milestone__year,
    .aze-journey-milestone__orbit,
    .aze-journey-viz__dot.is-active {
        transition: none !important;
        animation: none !important;
    }

    .aze-journey-viz__pulse,
    .aze-journey-viz__cursor-halo {
        animation: none !important;
    }

    .aze-journey-milestone__year {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 767px) {
    .aze-journey-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .aze-journey-viz__plot {
        height: 148px;
    }

    .aze-journey-viz__overlay {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--aze-radius);
        white-space: normal;
    }

    .aze-journey-viz__overlay-title {
        white-space: normal;
        text-align: center;
        flex: 1 1 100%;
    }

    .aze-journey-milestone__node {
        width: 28px;
        height: 28px;
    }

    .aze-journey-milestone__index {
        font-size: 9px;
    }

    .aze-journey-milestone__year {
        min-width: 44px;
        padding: 4px 8px;
        font-size: 0.625rem;
    }

    .aze-journey-viz__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .aze-journey-viz__ticker {
        max-width: 100%;
        order: 3;
    }
}

/* — Trust — */
.aze-about-trust {
    padding: clamp(52px, 7vw, 88px) 0;
    background: #fff;
}

.aze-about-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.aze-about-trust__media {
    border-radius: calc(var(--aze-radius) + 6px);
    overflow: hidden;
    box-shadow: var(--aze-shadow-lg);
    border: 1px solid var(--aze-border);
    line-height: 0;
}

.aze-about-trust__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.aze-about-trust__title {
    margin: 0 0 14px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--aze-navy);
}

.aze-about-trust__text {
    margin: 0 0 22px;
    font-size: clamp(1.0625rem, 0.25vw + 1rem, 1.2rem);
    line-height: 1.85;
    color: var(--aze-text-muted);
}

.aze-about-trust__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--aze-navy);
    color: #fff;
    font-family: var(--aze-font-display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}

.aze-about-trust__btn:hover {
    background: var(--aze-blue);
    color: #fff;
    gap: 12px;
    transform: translateY(-1px);
}

/* — Team grid (uniform cards) — */
.aze-team-section {
    padding: clamp(56px, 8vw, 96px) 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(29, 111, 220, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
}

.aze-team-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.aze-team-head__title {
    margin: 0 0 12px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--aze-navy);
}

.aze-team-head__sub {
    margin: 0;
    font-size: clamp(1.0625rem, 0.25vw + 1rem, 1.1875rem);
    line-height: 1.8;
    color: var(--aze-text-muted);
}

.aze-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
}

.aze-team-card {
    height: 100%;
    min-width: 0;
}

.aze-team-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--aze-border);
    border-radius: calc(var(--aze-radius) + 2px);
    box-shadow: var(--aze-shadow);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aze-team-card__link:hover {
    transform: translateY(-4px);
    box-shadow: var(--aze-shadow-lg);
    border-color: rgba(29, 111, 220, 0.22);
}

.aze-team-card__photo {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--aze-surface) 0%, #e2e8f0 100%);
    flex-shrink: 0;
}

.aze-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.aze-team-card__link:hover .aze-team-card__photo img {
    transform: scale(1.05);
}

.aze-team-card__name {
    margin: 0;
    padding: 16px 16px 8px;
    font-family: var(--aze-font-display);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--aze-navy);
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aze-team-card__more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px 16px;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--aze-blue);
    transition: gap 0.2s ease;
}

.aze-team-card__link:hover .aze-team-card__more {
    gap: 10px;
}

.aze-team-card__more i {
    font-size: 11px;
}

/* Responsive */
@media (min-width: 768px) {
    .aze-about-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 44px;
    }

    .aze-about-trust__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 44px;
    }
}

@media (min-width: 1200px) {
    .aze-team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .aze-team-card__link,
    .aze-team-card__photo img {
        transition: none !important;
    }

    .aze-team-card__link:hover {
        transform: none;
    }
}
