/**
 * Torevya Hakkımızda sayfasına özel stiller.
 * main.css ve app.min.css dosyalarından sonra yüklenmelidir.
 */

:root {
    --about-primary: #2f2beb;
    --about-primary-dark: #1b1885;
    --about-cyan: #2bc8eb;
    --about-navy: #11162a;
    --about-text: #5d6678;
    --about-soft: #f6f7ff;
    --about-line: #e6e9f3;
    --about-white: #ffffff;
}

.about-page,
.about-page * {
    box-sizing: border-box;
}

.about-page {
    overflow: hidden;
    color: var(--about-text);
}

.about-hero {
    position: relative;
    isolation: isolate;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 118px 0 128px;
    background-position: center;
    background-size: cover;
}

.about-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(10, 18, 42, .96) 0%, rgba(17, 22, 58, .88) 52%, rgba(24, 24, 133, .67) 100%);
}

.about-hero::after {
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    right: -160px;
    bottom: -280px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .018);
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    list-style: none;
}

.about-breadcrumb a {
    color: var(--about-white);
}

.about-breadcrumb svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.about-eyebrow,
.about-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--about-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.about-eyebrow {
    margin-bottom: 20px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #dcd9ff;
}

.about-section-tag::before {
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: var(--about-cyan);
    box-shadow: 0 0 0 5px rgba(43, 200, 235, .13);
}

.about-eyebrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--about-cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-hero-content {
    max-width: 870px;
}

.about-hero h1 {
    margin: 0 0 24px;
    color: var(--about-white);
    font-size: clamp(43px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.04em;
}

.about-hero-lead {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.75;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.about-primary-btn {
    background: var(--about-cyan);
    color: #071528;
}

.about-secondary-btn {
    border-color: rgba(255, 255, 255, .27);
    background: rgba(255, 255, 255, .07);
    color: var(--about-white);
}

.about-primary-btn:hover,
.about-secondary-btn:hover {
    color: inherit;
    transform: translateY(-3px);
}

.about-secondary-btn:hover {
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .13);
    color: var(--about-white);
}

.about-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin: 36px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .78);
    list-style: none;
}

.about-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.about-hero-points svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--about-cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-section {
    padding: 110px 0;
}

.about-section.is-soft {
    background: var(--about-soft);
}

.about-section-heading {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.about-section-heading.align-left {
    max-width: none;
    margin: 0 0 30px;
    text-align: left;
}

.about-section-heading h2 {
    margin: 16px 0 17px;
    color: var(--about-navy);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.032em;
}

.about-section-heading p {
    margin: 0;
    font-size: 17px;
    line-height: 1.78;
}

.about-story-media {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 28px;
    background: #dfe4f4;
    box-shadow: 0 28px 70px rgba(17, 22, 42, .14);
}

.about-story-media > img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}

.about-story-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 255px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 18px;
    background: rgba(17, 22, 42, .88);
    backdrop-filter: blur(14px);
    color: var(--about-white);
}

.about-story-badge span {
    display: block;
    margin-bottom: 6px;
    color: var(--about-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-story-badge strong {
    display: block;
    font-size: 18px;
    line-height: 1.45;
}

.about-story-copy {
    padding-left: 44px;
}

.about-story-copy > p {
    margin: 0 0 19px;
    font-size: 17px;
    line-height: 1.82;
}

.about-story-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.about-story-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--about-line);
    border-radius: 14px;
    background: var(--about-white);
    color: var(--about-navy);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.about-story-point svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: var(--about-primary);
    stroke-width: 2;
}

.about-story-point strong {
    display: block;
    color: var(--about-navy);
    font-size: 15px;
    line-height: 1.45;
}

.about-purpose-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--about-line);
    border-radius: 22px;
    background: var(--about-white);
    box-shadow: 0 12px 34px rgba(17, 22, 42, .055);
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-purpose-card::after {
    position: absolute;
    width: 135px;
    height: 135px;
    right: -70px;
    bottom: -78px;
    content: "";
    border-radius: 50%;
    background: rgba(var(--purpose-rgb), .08);
}

.about-purpose-card:hover {
    box-shadow: 0 20px 50px rgba(17, 22, 42, .1);
    transform: translateY(-6px);
}

.about-purpose-card.is-mission {
    --purpose-color: #2563eb;
    --purpose-rgb: 37, 99, 235;
}

.about-purpose-card.is-vision {
    --purpose-color: #7c3aed;
    --purpose-rgb: 124, 58, 237;
}

.about-purpose-card.is-promise {
    --purpose-color: #059669;
    --purpose-rgb: 5, 150, 105;
}

.about-purpose-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 17px;
    background: rgba(var(--purpose-rgb), .1);
    color: var(--purpose-color);
}

.about-purpose-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-purpose-card > span {
    display: block;
    margin-bottom: 9px;
    color: var(--purpose-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.about-purpose-card h3 {
    margin: 0 0 13px;
    color: var(--about-navy);
    font-size: 25px;
    font-weight: 800;
}

.about-purpose-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.77;
}

.about-method-shell {
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 26px;
    background: var(--about-white);
    box-shadow: 0 24px 65px rgba(17, 22, 42, .08);
}

.about-method-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--about-line);
    background: #fafbff;
}

.about-method-tab {
    position: relative;
    min-height: 76px;
    padding: 16px 18px;
    border: 0;
    border-right: 1px solid var(--about-line);
    background: transparent;
    color: #71798a;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.about-method-tab:last-child {
    border-right: 0;
}

.about-method-tab::after {
    position: absolute;
    right: 24px;
    bottom: -1px;
    left: 24px;
    height: 3px;
    content: "";
    border-radius: 3px 3px 0 0;
    background: var(--about-primary);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.about-method-tab[aria-selected="true"] {
    background: var(--about-white);
    color: var(--about-primary);
}

.about-method-tab[aria-selected="true"]::after {
    transform: scaleX(1);
}

.about-method-tab:focus-visible {
    z-index: 2;
    outline: 3px solid rgba(43, 200, 235, .35);
    outline-offset: -3px;
}

.about-method-panel {
    display: grid;
    min-height: 360px;
    align-items: center;
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 40px;
    padding: 54px;
}

.about-method-panel[hidden] {
    display: none !important;
}

.about-method-number {
    display: flex;
    width: 140px;
    height: 140px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 43, 235, .13);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(47, 43, 235, .1), rgba(43, 200, 235, .13));
    color: var(--about-primary);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.about-method-content h3 {
    margin: 10px 0 14px;
    color: var(--about-navy);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 800;
}

.about-method-content p {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.78;
}

.about-method-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-method-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--about-navy);
    font-size: 14px;
    font-weight: 700;
}

.about-method-list li::before {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    content: "";
    border-radius: 50%;
    background: var(--about-cyan);
}

.about-value-card {
    --value-color: #2563eb;
    --value-rgb: 37, 99, 235;
    position: relative;
    height: 100%;
    padding: 28px;
    border: 1px solid rgba(var(--value-rgb), .13);
    border-radius: 20px;
    background: var(--about-white);
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-value-card:hover {
    box-shadow: 0 18px 42px rgba(var(--value-rgb), .13);
    transform: translateY(-6px);
}

.about-value-card.is-purple {
    --value-color: #7c3aed;
    --value-rgb: 124, 58, 237;
}

.about-value-card.is-amber {
    --value-color: #d97706;
    --value-rgb: 217, 119, 6;
}

.about-value-card.is-green {
    --value-color: #059669;
    --value-rgb: 5, 150, 105;
}

.about-value-card.is-cyan {
    --value-color: #0891b2;
    --value-rgb: 8, 145, 178;
}

.about-value-card.is-rose {
    --value-color: #e11d48;
    --value-rgb: 225, 29, 72;
}

.about-value-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(var(--value-rgb), .1);
    color: var(--value-color);
}

.about-value-icon svg {
    width: 28px;
    height: 28px;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-value-card h3 {
    margin: 0 0 10px;
    color: var(--about-navy);
    font-size: 20px;
    font-weight: 800;
}

.about-value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.72;
}

.about-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-process::before {
    position: absolute;
    height: 2px;
    top: 26px;
    right: 8%;
    left: 8%;
    content: "";
    background: linear-gradient(90deg, var(--about-primary), var(--about-cyan));
}

.about-process-item {
    position: relative;
    z-index: 1;
    padding: 0 14px;
    text-align: center;
}

.about-process-number {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 6px solid var(--about-white);
    border-radius: 50%;
    background: var(--about-primary);
    box-shadow: 0 0 0 1px rgba(47, 43, 235, .16);
    color: var(--about-white);
    font-size: 14px;
    font-weight: 800;
}

.about-process-item:nth-child(even) .about-process-number {
    background: var(--about-cyan);
    color: #071528;
}

.about-process-item h3 {
    margin: 0 0 8px;
    color: var(--about-navy);
    font-size: 17px;
    font-weight: 800;
}

.about-process-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.about-cta {
    position: relative;
    isolation: isolate;
    padding: 86px 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.about-cta::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(100deg, rgba(27, 24, 133, .96), rgba(47, 43, 235, .9));
}

.about-cta h2 {
    max-width: 820px;
    margin: 0 0 16px;
    color: var(--about-white);
    font-size: clamp(33px, 4.7vw, 54px);
    font-weight: 800;
    line-height: 1.14;
}

.about-cta .container > .row > div:first-child > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--about-cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.about-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.75;
}

.about-cta-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1199.98px) {
    .about-story-copy {
        padding-left: 12px;
    }

    .about-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 20px;
    }

    .about-process::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .about-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .about-section {
        padding: 86px 0;
    }

    .about-story-copy {
        padding: 50px 0 0;
    }

    .about-method-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-method-tab:nth-child(2) {
        border-right: 0;
    }

    .about-method-tab:nth-child(-n+2) {
        border-bottom: 1px solid var(--about-line);
    }

    .about-method-panel {
        grid-template-columns: 125px minmax(0, 1fr);
        gap: 28px;
        padding: 38px;
    }

    .about-method-number {
        width: 112px;
        height: 112px;
        border-radius: 28px;
        font-size: 39px;
    }

    .about-cta-actions {
        justify-content: flex-start;
        margin-top: 28px;
    }
}

@media (max-width: 767.98px) {
    .about-story-points,
    .about-method-list {
        grid-template-columns: 1fr;
    }

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

    .about-method-panel {
        grid-template-columns: 1fr;
    }

    .about-method-number {
        width: 92px;
        height: 92px;
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 78px 0 84px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero-actions,
    .about-primary-btn,
    .about-secondary-btn {
        width: 100%;
    }

    .about-section {
        padding: 68px 0;
    }

    .about-story-media,
    .about-story-media > img {
        min-height: 430px;
    }

    .about-story-badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
    }

    .about-purpose-card,
    .about-value-card {
        padding: 24px;
    }

    .about-method-tabs {
        grid-template-columns: 1fr;
    }

    .about-method-tab,
    .about-method-tab:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--about-line);
    }

    .about-method-tab:last-child {
        border-bottom: 0;
    }

    .about-method-panel {
        min-height: 0;
        padding: 28px 22px;
    }

    .about-process {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page *,
    .about-page *::before,
    .about-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
