/*
|--------------------------------------------------------------------------
| DEMIRAY TECH - HOME
|--------------------------------------------------------------------------
*/

.home-page {
    --home-yellow: #f9b122;
    --home-yellow-dark: #d99000;

    --home-dark: #080b10;
    --home-dark-2: #0d1118;

    --home-white: #ffffff;

    --home-text: #111827;
    --home-muted: #64748b;

    --home-border: #e6e9ee;
}


.home {
    overflow: hidden;

    color: var(--home-text);

    background: #fff;
}


.home-section {
    padding: 120px 0;
}


/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.home .site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 0 24px;

    border:
        1px solid
        transparent;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    transition:
        220ms ease;
}


.home .site-button:hover {
    transform: translateY(-2px);
}


.home .site-button--large {
    min-height: 58px;

    padding-inline: 28px;
}


.home .site-button--primary {
    color: #17110a;

    background: var(--home-yellow);
}


.home .site-button--dark {
    color: #fff;

    background: var(--home-dark);
}


.home .site-button--light {
    color: #111;

    background: #fff;
}


.home .site-button--ghost-light {
    color: #fff;

    border-color:
        rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.04);
}


/*
|--------------------------------------------------------------------------
| Heading
|--------------------------------------------------------------------------
*/

.home-section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    gap: 70px;
    align-items: end;

    margin-bottom: 56px;
}


.home-section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--home-yellow-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}


.home-section-heading__eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--home-yellow);
}


.home-section-heading h2 {
    margin: 0;

    font-size: clamp(
        38px,
        4.4vw,
        68px
    );

    font-weight: 760;
    letter-spacing: -.048em;
    line-height: 1.02;
}


.home-section-heading h2 span {
    color: var(--home-muted);
}


.home-section-heading__right p {
    color: var(--home-muted);

    font-size: 17px;
    line-height: 1.75;
}


.home-section-heading--light h2 {
    color: #fff;
}


.home-section-heading--light h2 span {
    color: #707b8d;
}


.home-section-heading--light p {
    color: #9ba7b8;
}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.home-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 900px;

    padding:
        190px 0
        120px;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #070a0f 0%,
            #0c1119 52%,
            #111823 100%
        );
}


.home-hero__background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}


.home-hero__grid {
    position: absolute;
    inset: 0;

    opacity: .17;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;
}


.home-hero__glow {
    position: absolute;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    opacity: .12;

    filter: blur(30px);
}


.home-hero__glow--one {
    top: -220px;
    right: 8%;

    background: var(--home-yellow);
}


.home-hero__glow--two {
    bottom: -350px;
    left: -150px;

    background: #1d76ff;
}


.home-hero__grid-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(450px, 1.05fr);

    gap: 90px;
    align-items: center;
}


.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    color: #dfe5ed;

    font-size: 12px;
    font-weight: 750;
    letter-spacing: .18em;
}


.home-hero__eyebrow-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--home-yellow);

    box-shadow:
        0 0 0 5px
        rgba(249,177,34,.1);
}


.home-hero__title {
    max-width: 760px;

    margin:
        0 0 28px;

    font-size: clamp(
        52px,
        6.1vw,
        92px
    );

    font-weight: 770;
    letter-spacing: -.06em;
    line-height: .96;
}


.home-hero__description {
    max-width: 650px;

    margin:
        0 0 36px;

    color: #aeb8c6;

    font-size: 19px;
    line-height: 1.75;
}


.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 44px;
}


.home-hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}


.home-hero__trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: var(--home-yellow);

    border:
        1px solid
        rgba(249,177,34,.18);

    border-radius: 12px;

    background:
        rgba(249,177,34,.06);
}


.home-hero__trust-icon svg {
    width: 22px;
    height: 22px;
}


.home-hero__trust strong,
.home-hero__trust span {
    display: block;
}


.home-hero__trust strong {
    color: #eef2f7;

    font-size: 13px;
}


.home-hero__trust span {
    color: #7e8998;

    font-size: 12px;
}


/*
|--------------------------------------------------------------------------
| Hero visual
|--------------------------------------------------------------------------
*/

.home-hero__visual {
    position: relative;
}


.home-hero__image-wrap {
    position: relative;

    width: min(
        100%,
        690px
    );

    margin-left: auto;

    aspect-ratio: 1 / 1;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 60px 120px
        rgba(0,0,0,.32);

    overflow: visible;
}


.home-hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 33px;
}


/*
|--------------------------------------------------------------------------
| Hero fallback
|--------------------------------------------------------------------------
*/

.home-hero__fallback {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 33px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(249,177,34,.13),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #111722,
            #090c11
        );
}


.home-hero__fallback-grid {
    position: absolute;
    inset: 0;

    opacity: .3;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}


.home-hero__fallback-center {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.home-hero__fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 96px;
    height: 96px;

    margin-bottom: 24px;

    color: var(--home-yellow);

    border:
        1px solid
        rgba(249,177,34,.26);

    border-radius: 26px;

    background:
        rgba(249,177,34,.06);
}


.home-hero__fallback-icon svg {
    width: 55px;
    height: 55px;
}


.home-hero__fallback-center strong {
    margin-bottom: 8px;

    color: #fff;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: .06em;
}


.home-hero__fallback-center > span:last-child {
    color: #778395;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
}


.home-hero__badge {
    position: absolute;
    z-index: 4;

    top: 56px;
    left: -42px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px 18px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 16px;

    background:
        rgba(11,15,21,.78);

    backdrop-filter: blur(18px);
}


.home-hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #111;

    border-radius: 11px;

    background: var(--home-yellow);
}


.home-hero__badge-icon svg {
    width: 23px;
    height: 23px;
}


.home-hero__badge small,
.home-hero__badge strong {
    display: block;
}


.home-hero__badge small {
    color: #7e8998;

    font-size: 10px;
}


.home-hero__badge strong {
    color: #f5f7fa;

    font-size: 13px;
}


.home-hero__technology-card {
    position: absolute;
    z-index: 4;

    right: -28px;
    bottom: 52px;

    display: grid;
    grid-template-columns:
        repeat(2, auto);

    gap: 8px;

    padding: 15px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 15px;

    background:
        rgba(8,11,16,.82);
}


.home-hero__technology-card span {
    padding: 8px 12px;

    color: #939eac;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 7px;

    font-size: 9px;
    font-weight: 800;
}


/*
|--------------------------------------------------------------------------
| Stats
|--------------------------------------------------------------------------
*/

.home-stats {
    background: var(--home-dark);
}


.home-stats__grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,.09);

    border-bottom:
        1px solid
        rgba(255,255,255,.09);
}


.home-stat {
    min-height: 150px;

    padding: 34px 28px;

    border-right:
        1px solid
        rgba(255,255,255,.09);
}


.home-stat:last-child {
    border-right: 0;
}


.home-stat__value {
    display: block;

    color: #fff;

    font-size: 40px;
}


.home-stat__label {
    color: #7f8a99;

    font-size: 13px;
}


/*
|--------------------------------------------------------------------------
| Solutions
|--------------------------------------------------------------------------
*/

.home-solutions {
    background: #f7f8fa;
}


.home-solutions__grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid
        var(--home-border);

    border-radius: 24px;

    overflow: hidden;

    background: #fff;
}


.home-solution-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 340px;

    padding: 30px;

    border-right:
        1px solid
        var(--home-border);

    border-bottom:
        1px solid
        var(--home-border);

    text-decoration: none;
}


.home-solution-card__number {
    position: absolute;

    top: 24px;
    right: 26px;

    color: #c4cad2;

    font-size: 11px;
}


.home-solution-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: auto;

    border:
        1px solid
        #eceef1;

    border-radius: 15px;

    background: #fafbfc;
}


.home-solution-card__icon svg {
    width: 28px;
    height: 28px;
}


.home-solution-card__content {
    margin-top: 48px;
}


.home-solution-card h3 {
    font-size: 20px;
}


.home-solution-card p {
    color: var(--home-muted);

    font-size: 14px;
    line-height: 1.65;
}


.home-solution-card__arrow {
    margin-top: 22px;

    font-size: 22px;
}


/*
|--------------------------------------------------------------------------
| Why
|--------------------------------------------------------------------------
*/

.home-why__layout {
    display: grid;
    grid-template-columns:
        .76fr
        1.24fr;

    gap: 110px;
}


.home-why__intro h2 {
    font-size: clamp(
        42px,
        4.4vw,
        67px
    );

    letter-spacing: -.05em;
}


.home-why__intro h2 span {
    color: var(--home-yellow-dark);
}


.home-why__intro p {
    margin-bottom: 30px;

    color: var(--home-muted);

    line-height: 1.8;
}


.home-advantage {
    display: grid;
    grid-template-columns:
        70px 1fr;

    gap: 24px;

    padding: 34px 0;

    border-bottom:
        1px solid
        var(--home-border);
}


.home-advantage__number {
    color: var(--home-yellow-dark);
}


.home-advantage p {
    color: var(--home-muted);

    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| Software
|--------------------------------------------------------------------------
*/

.home-software {
    color: #fff;

    background:
        linear-gradient(
            145deg,
            #090c11,
            #111722
        );
}


.home-software__grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.home-software-card {
    position: relative;

    min-height: 420px;

    padding: 30px;

    color: #fff;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 20px;

    text-decoration: none;

    overflow: hidden;
}


.home-software-card__top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 60px;
}


.home-software-card h3 {
    font-size: 27px;
}


.home-software-card p {
    color: #8e99a8;

    line-height: 1.7;
}


.home-software-card__visual {
    position: absolute;

    right: -40px;
    bottom: -44px;

    width: 210px;
    height: 170px;
}


.home-software-card__visual span {
    position: absolute;

    border:
        1px solid
        #7e8998;

    border-radius: 12px;
}


.home-software-card__visual span:nth-child(1) {
    inset: 0;
}


.home-software-card__visual span:nth-child(2) {
    inset: 20px -20px -20px 20px;
}


.home-software-card__visual span:nth-child(3) {
    inset: 40px -40px -40px 40px;
}


/*
|--------------------------------------------------------------------------
| Service
|--------------------------------------------------------------------------
*/

.home-service__layout {
    display: grid;
    grid-template-columns:
        1.08fr
        .92fr;

    gap: 100px;
    align-items: center;
}


.home-service__visual {
    position: relative;

    min-height: 600px;

    border-radius: 30px;

    overflow: hidden;

    background: #10151e;
}


.home-service__visual img {
    width: 100%;
    height: 600px;

    object-fit: cover;
}


.home-service__fallback {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(249,177,34,.14),
            transparent 32%
        ),
        #10151e;
}


.home-service__fallback svg {
    width: 90px;
    height: 90px;

    margin-bottom: 24px;

    color: var(--home-yellow);
}


.home-service__fallback strong {
    margin-bottom: 8px;

    font-size: 26px;
}


.home-service__fallback span {
    color: #8792a1;

    font-size: 12px;
    letter-spacing: .1em;
}


.home-service__visual-badge {
    position: absolute;

    left: 28px;
    bottom: 28px;

    z-index: 2;

    padding: 17px 20px;

    color: #fff;

    border-radius: 15px;

    background:
        rgba(10,14,20,.78);
}


.home-service__visual-badge strong {
    color: var(--home-yellow);

    font-size: 25px;
}


.home-service__content h2 {
    font-size: clamp(
        42px,
        4.3vw,
        66px
    );

    letter-spacing: -.05em;
}


.home-service__content > p {
    color: var(--home-muted);

    line-height: 1.8;
}


.home-service__features {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin:
        30px 0;

    padding: 0;

    list-style: none;
}


.home-service__features li {
    font-size: 13px;
}


.home-service__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}


.home-service__phone {
    text-decoration: none;
}


.home-service__phone small,
.home-service__phone strong {
    display: block;
}


/*
|--------------------------------------------------------------------------
| Regions
|--------------------------------------------------------------------------
*/

.home-regions {
    background: #f6f7f9;
}


.home-regions__layout {
    display: grid;
    grid-template-columns:
        .75fr
        1.25fr;

    gap: 80px;
    align-items: center;
}


.home-regions__content h2 {
    font-size: clamp(
        42px,
        4.5vw,
        66px
    );

    letter-spacing: -.05em;
}


.home-regions__content h2 span {
    color: var(--home-yellow-dark);
}


.home-regions__content p {
    margin-bottom: 30px;

    color: var(--home-muted);

    line-height: 1.8;
}


.home-regions__panel {
    padding: 28px;

    border:
        1px solid
        var(--home-border);

    border-radius: 26px;

    background: #fff;
}


.home-regions__map {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 360px;

    margin-bottom: 22px;

    border-radius: 18px;

    background: #0d121a;
}


.home-regions__map svg {
    width: 90%;

    color: #566274;
}


.home-regions__map-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--home-yellow);
}


.home-regions__map-dot--1 {
    left: 18%;
    top: 42%;
}


.home-regions__map-dot--2 {
    left: 32%;
    top: 50%;
}


.home-regions__map-dot--3 {
    left: 48%;
    top: 38%;
}


.home-regions__map-dot--4 {
    right: 28%;
    top: 48%;
}


.home-regions__map-dot--5 {
    right: 14%;
    top: 42%;
}


.home-regions__links {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;
}


.home-regions__links a {
    display: flex;
    justify-content: space-between;

    padding: 15px;

    border-radius: 10px;

    background: #f6f7f9;

    text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| Process
|--------------------------------------------------------------------------
*/

.home-process__grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
}


.home-process-step {
    padding: 28px 30px;

    border-right:
        1px solid
        var(--home-border);
}


.home-process-step:last-child {
    border-right: 0;
}


.home-process-step__number {
    color: var(--home-yellow-dark);
}


.home-process-step__line {
    height: 1px;

    margin: 25px 0;

    background: var(--home-border);
}


.home-process-step p {
    color: var(--home-muted);

    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| Knowledge
|--------------------------------------------------------------------------
*/

.home-knowledge {
    background: #f7f8fa;
}


.home-knowledge__grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.home-article-card {
    border:
        1px solid
        var(--home-border);

    border-radius: 20px;

    background: #fff;

    overflow: hidden;
}


.home-article-card__image {
    display: block;

    height: 250px;

    background: #10151e;

    overflow: hidden;
}


.home-article-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.home-article-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #7f8a99;

    background:
        radial-gradient(
            circle,
            rgba(249,177,34,.08),
            transparent 50%
        ),
        #10151e;
}


.home-article-card__placeholder svg {
    width: 50px;
    height: 50px;

    margin-bottom: 12px;

    color: var(--home-yellow);
}


.home-article-card__placeholder span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}


.home-article-card__content {
    padding: 26px;
}


.home-article-card__category {
    color: var(--home-yellow-dark);

    font-size: 10px;
    font-weight: 800;
}


.home-article-card h3 {
    font-size: 21px;
}


.home-article-card h3 a,
.home-article-card__link {
    text-decoration: none;
}


.home-article-card p {
    color: var(--home-muted);

    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| Final CTA
|--------------------------------------------------------------------------
*/

.home-final-cta {
    position: relative;

    padding: 100px 0;

    color: #fff;

    background: #080b10;
}


.home-final-cta__background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(249,177,34,.12),
            transparent 32%
        );
}


.home-final-cta__inner {
    position: relative;

    display: grid;
    grid-template-columns:
        1fr
        auto;

    gap: 70px;
    align-items: center;
}


.home-final-cta h2 {
    font-size: clamp(
        40px,
        4.4vw,
        66px
    );

    letter-spacing: -.05em;
}


.home-final-cta p {
    max-width: 720px;

    color: #929dac;

    line-height: 1.75;
}


.home-final-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (
    max-width: 1024px
) {

    .home-section {
        padding: 90px 0;
    }


    .home-section-heading,
    .home-hero__grid-layout,
    .home-why__layout,
    .home-service__layout,
    .home-regions__layout,
    .home-final-cta__inner {
        grid-template-columns: 1fr;
    }


    .home-hero {
        min-height: auto;

        padding:
            160px 0
            90px;
    }


    .home-hero__visual {
        max-width: 700px;

        margin-inline: auto;
    }


    .home-stats__grid,
    .home-process__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-solutions__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-software__grid {
        grid-template-columns: 1fr;
    }


    .home-knowledge__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (
    max-width: 767px
) {

    .home-section {
        padding: 72px 0;
    }


    .home-hero {
        padding:
            130px 0
            70px;
    }


    .home-hero__title {
        font-size:
            clamp(
                43px,
                13vw,
                62px
            );
    }


    .home-hero__actions {
        flex-direction: column;
    }


    .home-hero__actions
    .site-button {
        width: 100%;
    }


    .home-hero__badge {
        top: 18px;
        left: 18px;
    }


    .home-hero__technology-card {
        right: 18px;
        bottom: 18px;
    }


    .home-stats__grid,
    .home-solutions__grid,
    .home-process__grid,
    .home-knowledge__grid {
        grid-template-columns: 1fr;
    }


    .home-software__grid {
        grid-template-columns: 1fr;
    }


    .home-service__features {
        grid-template-columns: 1fr;
    }


    .home-service__actions {
        flex-direction: column;
        align-items: stretch;
    }


    .home-regions__links {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-final-cta__actions {
        width: 100%;
    }


    .home-final-cta__actions
    .site-button {
        width: 100%;
    }

}


@media (
    max-width: 430px
) {

    .home-hero__technology-card {
        display: none;
    }


    .home-regions__links {
        grid-template-columns: 1fr;
    }

}