/* =========================================================
   DEEPWORK - GLOBAL
========================================================= */

:root {
    --navy: #20206f;
    --navy-dark: #071326;
    --navy-medium: #11194b;

    --blue: #2869e8;
    --blue-hover: #1d58ce;
    --blue-light: #59b9f5;

    --white: #ffffff;

    --text: #111827;
    --text-soft: #667085;

    --background: #ffffff;
    --background-soft: #f7f8fb;

    --border: #e5e7eb;

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: var(--background);
    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #edf0f4;
}

.navbar {
    min-height: 120px;

    display: flex;
    align-items: center;

    gap: 32px;
}


/* =========================================================
   NAVBAR LOGO
========================================================= */

.navbar-logo {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar-logo img {
    width: 115px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 32px;
}

.nav-links a {
    position: relative;

    padding: 10px 0;

    color: #252936;

    font-size: 15px;
    font-weight: 500;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: var(--navy);

    transition: width 0.22s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   NAVBAR CONTACT BUTTON
========================================================= */

.nav-contact {
    flex: 0 0 auto;

    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 8px;

    padding: 0 22px;

    border-radius: 8px;

    background: var(--blue);
    color: #ffffff;

    font-size: 14px;
    font-weight: 650;

    box-shadow:
        0 7px 20px rgba(40, 105, 232, 0.16);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nav-contact:hover {
    background: var(--blue-hover);

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(40, 105, 232, 0.22);
}


/* =========================================================
   MAIN
========================================================= */

main {
    width: 100%;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    padding: 30px 0 32px;

    background: #ffffff;
}

.hero {
    position: relative;

    width: 100%;
    min-height: 535px;

    display: flex;
    align-items: center;

    overflow: hidden;

    

    background: var(--navy-dark);

    box-shadow:
        0 16px 45px rgba(14, 25, 55, 0.10);
}


/* =========================================================
   HERO VIDEO
========================================================= */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
       Videonun telefon ve AI tarafını
       görünür tutmak için biraz sağa odaklanıyor.
    */
    object-position: 58% center;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 10, 29, 0.97) 0%,
            rgba(5, 14, 39, 0.94) 28%,
            rgba(8, 17, 49, 0.75) 47%,
            rgba(8, 17, 49, 0.28) 70%,
            rgba(8, 17, 49, 0.06) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 690px;

    padding: 72px 58px;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    margin-bottom: 21px;

    padding: 7px 13px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.92);

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.07em;

    backdrop-filter: blur(6px);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    max-width: 590px;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(44px, 4vw, 61px);
    line-height: 1.03;

    font-weight: 760;

    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;

    margin-top: 6px;

    color: var(--blue-light);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content > p {
    max-width: 540px;

    margin-bottom: 31px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15.5px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 21px;

    border-radius: 8px;

    font-size: 13.5px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn-primary {
    background: var(--blue);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--blue-hover);

    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.30);

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    backdrop-filter: blur(7px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);

    transform: translateY(-2px);
}


/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {
    padding: 0 0 90px;

    background: #ffffff;
}

.stats-grid {
    width: min(1120px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(15, 27, 56, 0.055);
}


/* =========================================================
   STAT CARD
========================================================= */

.stat-card {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 27px 29px;

    border-right: 1px solid var(--border);

    background: #ffffff;

    transition: background 0.2s ease;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: #fafbfe;
}

.stat-card strong {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 33px;
    line-height: 1;

    font-weight: 770;

    letter-spacing: -0.035em;
}

.stat-card span {
    display: block;

    margin-bottom: 7px;

    color: #202065;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;
}

.stat-card p {
    max-width: 210px;

    color: #777e8b;

    font-size: 11.5px;
    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    padding-top: 52px;

    background:
        linear-gradient(
            135deg,
            #071326 0%,
            #101746 55%,
            #1b1d6c 100%
        );

    color: #ffffff;
}

.footer-content {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.6fr)
        minmax(150px, 0.75fr)
        minmax(170px, 0.75fr);

    align-items: start;

    gap: 70px;

    padding-bottom: 42px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-content > div:first-child {
    max-width: 390px;
}

.footer-logo {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    margin-bottom: 10px;
}

.footer-logo img {
    width: 200px;
    height: auto;

    object-fit: contain;
}

.footer-content p {
    max-width: 370px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 13.5px;
    line-height: 1.75;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-content > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-content strong {
    position: relative;

    margin-bottom: 18px;
    padding-bottom: 10px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

.footer-content strong::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.86);
}

.footer-content a:not(.footer-logo) {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13.5px;
    line-height: 1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-content a:not(.footer-logo):hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: min(var(--container), calc(100% - 48px));

    margin: 0 auto;

    padding: 19px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.11);

    text-align: center;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 20px;
    }

    .navbar-logo img {
        width: 105px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-content {
        max-width: 640px;

        padding-left: 44px;
        padding-right: 44px;
    }
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 850px) {

    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .navbar {
        min-height: 105px;
    }

    .navbar-logo img {
        width: 95px;
    }

    .nav-links {
        display: none;
    }

    .nav-contact {
        margin-left: auto;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        max-width: 600px;

        padding: 58px 38px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 10, 29, 0.97) 0%,
                rgba(5, 14, 39, 0.88) 55%,
                rgba(8, 17, 49, 0.32) 100%
            );
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        border-bottom: 1px solid var(--border);
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-content > div:first-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 560px) {

    .navbar {
        min-height: 92px;
    }

    .navbar-logo img {
        width: 86px;
    }

    .nav-contact {
        min-height: 40px;

        padding: 0 15px;

        font-size: 12.5px;
    }

    .hero-section {
        padding-top: 16px;
        padding-bottom: 25px;
    }

    .hero {
        min-height: 570px;

       
    }

    .hero-video {
        object-position: 63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 10, 29, 0.97) 0%,
                rgba(5, 14, 39, 0.80) 72%,
                rgba(8, 17, 49, 0.45) 100%
            );
    }

    .hero-content {
        width: 100%;

        padding: 48px 24px;
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-content > p {
        font-size: 14.5px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .stats-section {
        padding-bottom: 65px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 125px;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-card:nth-child(3) {
        border-bottom: 1px solid var(--border);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-content > div:first-child {
        grid-column: auto;
    }

    .footer-logo img {
        width: 62px;
    }

    .footer-bottom {
        width: calc(100% - 32px);
    }
}
/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {
    padding: 34px 0 90px;
    background: #ffffff;
}

.stats-grid {
    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================================
   STAT CARD
========================================================= */

.stat-card {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 27px 28px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(15, 27, 56, 0.055);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);

    border-color: rgba(40, 105, 232, 0.22);

    box-shadow:
        0 14px 32px rgba(15, 27, 56, 0.09);
}

.stat-card strong {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 33px;
    line-height: 1;

    font-weight: 770;

    letter-spacing: -0.035em;
}

.stat-card span {
    display: block;

    margin-bottom: 8px;

    color: #202065;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;
}

.stat-card p {
    color: #777e8b;

    font-size: 11.5px;
    line-height: 1.6;
}


/* TABLET */

@media (max-width: 850px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 560px) {

    .stats-section {
        padding: 25px 0 65px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-card {
        min-height: 125px;
    }
}
/* =========================================================
   ECOSYSTEM / ABOUT
========================================================= */

.ecosystem-section {
    padding: 95px 0 110px;

    background: #f7f8fb;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 85px;
}


/* =========================================================
   VISUAL
========================================================= */

.ecosystem-visual {
    position: relative;

    min-height: 480px;
}

.ecosystem-main-image {
    width: 88%;
    height: 390px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(15, 27, 56, 0.12);
}

.ecosystem-small-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 58%;
    height: 205px;

    object-fit: cover;

    border: 7px solid #f7f8fb;
    border-radius: 18px;

    box-shadow:
        0 15px 36px rgba(15, 27, 56, 0.15);
}


/* =========================================================
   CONTENT
========================================================= */

.ecosystem-content {
    max-width: 590px;
}

.section-label {
    display: inline-flex;

    margin-bottom: 15px;

    color: #2869e8;

    font-size: 12px;
    font-weight: 750;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.ecosystem-content h2 {
    margin-bottom: 22px;

    color: #121827;

    font-size: clamp(34px, 3.2vw, 47px);
    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -0.035em;
}

.ecosystem-description {
    margin-bottom: 30px;

    color: #626b79;

    font-size: 15px;
    line-height: 1.8;
}

.ecosystem-description strong {
    color: #242a36;
}


/* =========================================================
   FEATURES
========================================================= */

.ecosystem-features {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-bottom: 32px;
}

.ecosystem-feature {
    display: grid;
    grid-template-columns: 37px 1fr;

    align-items: flex-start;

    gap: 14px;
}

.feature-check {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #20206f;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.ecosystem-feature strong {
    display: block;

    margin-bottom: 4px;

    color: #202634;

    font-size: 14px;
    font-weight: 700;
}

.ecosystem-feature p {
    color: #737b88;

    font-size: 12.5px;
    line-height: 1.6;
}


/* =========================================================
   ACTIONS
========================================================= */

.ecosystem-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.ecosystem-primary,
.ecosystem-secondary {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.ecosystem-primary {
    background: #20206f;
    color: #ffffff;
}

.ecosystem-primary:hover {
    background: #17175b;

    transform: translateY(-2px);
}

.ecosystem-secondary {
    border: 1px solid #dfe3e9;

    background: #ffffff;

    color: #252b38;
}

.ecosystem-secondary:hover {
    border-color: #cdd3dc;

    transform: translateY(-2px);
}


/* =========================================================
   ECOSYSTEM RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .ecosystem-section {
        padding: 75px 0 85px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .ecosystem-visual {
        width: min(650px, 100%);

        margin: 0 auto;
    }

    .ecosystem-content {
        max-width: 680px;
    }
}


@media (max-width: 560px) {

    .ecosystem-section {
        padding: 60px 0 70px;
    }

    .ecosystem-visual {
        min-height: 345px;
    }

    .ecosystem-main-image {
        width: 94%;
        height: 285px;

        border-radius: 15px;
    }

    .ecosystem-small-image {
        width: 60%;
        height: 145px;

        border-width: 5px;
        border-radius: 13px;
    }

    .ecosystem-content h2 {
        font-size: 32px;
    }

    .ecosystem-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ecosystem-primary,
    .ecosystem-secondary {
        width: 100%;
    }
}
/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 105px 0 115px;

    background: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading .section-label {
    margin-bottom: 13px;
}

.section-heading h2 {
    margin-bottom: 16px;

    color: #121827;

    font-size: clamp(35px, 3.3vw, 48px);
    line-height: 1.1;

    font-weight: 760;

    letter-spacing: -0.035em;
}

.section-heading > p {
    color: #697180;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    min-height: 560px;

    display: flex;
    flex-direction: column;

    padding: 38px 32px 31px;

    overflow: hidden;

    border: 1px solid #e4e7ed;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(13, 25, 52, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Üst renk çizgisi */

.product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;
}

.product-hr::before {
    background: #2869e8;
}

.product-cloth::before {
    background: linear-gradient(
        90deg,
        #6d4ce8,
        #923be3
    );
}

.product-service::before {
    background: linear-gradient(
        90deg,
        #159ec1,
        #20a98f
    );
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: rgba(32, 32, 111, 0.15);

    box-shadow:
        0 20px 45px rgba(13, 25, 52, 0.10);
}


/* =========================================================
   PRODUCT LOGOS
========================================================= */

.product-logo {
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.product-logo img {
    max-width: 125px;
    max-height: 95px;

    width: auto;
    height: auto;

    object-fit: contain;
}

.cloth-logo img {
    width: 83px;
}


/* =========================================================
   PRODUCT CATEGORY
========================================================= */

.product-category {
    width: fit-content;

    margin: 0 auto 12px;

    padding: 6px 10px;

    border-radius: 999px;

    background: #f1f5fd;

    color: #2869e8;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.045em;

    text-transform: uppercase;
}

.product-cloth .product-category {
    background: #f6efff;
    color: #7d3ed7;
}

.product-service .product-category {
    background: #edfafa;
    color: #168e91;
}


/* =========================================================
   PRODUCT TEXT
========================================================= */

.product-card h3 {
    margin-bottom: 15px;

    text-align: center;

    color: #151b29;

    font-size: 25px;
    font-weight: 760;
}

.product-description {
    margin-bottom: 24px;

    color: #68717f;

    text-align: center;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FEATURES
========================================================= */

.product-features {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 28px;
    padding-top: 21px;

    border-top: 1px solid #edf0f4;
}

.product-features span {
    color: #5f6774;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.product-link {
    width: 100%;
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: auto;

    border-radius: 8px;

    background: #20206f;

    color: #ffffff;

    font-size: 13px;
    font-weight: 650;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.product-link:hover {
    background: #17175b;

    transform: translateY(-2px);
}


/* =========================================================
   PRODUCTS RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        width: min(600px, 100%);

        min-height: auto;

        margin: 0 auto;
    }

}


@media (max-width: 560px) {

    .products-section {
        padding: 70px 0 80px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .product-card {
        padding: 32px 24px 25px;
    }

}
/* =========================================================
   WHY DEEPWORK
========================================================= */

.why-section {
    padding: 105px 0 115px;

    background: #f7f8fb;

    border-top: 1px solid #eef0f4;
}

.why-section .section-heading {
    margin-bottom: 50px;
}


/* =========================================================
   WHY GRID
========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   WHY CARD
========================================================= */

.why-card {
    position: relative;

    min-height: 270px;

    padding: 32px 28px;

    overflow: hidden;

    border: 1px solid #e4e7ed;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(15, 27, 56, 0.045);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.why-card:hover {
    transform: translateY(-5px);

    border-color: rgba(40, 105, 232, 0.20);

    box-shadow:
        0 16px 38px rgba(15, 27, 56, 0.085);
}


/* =========================================================
   NUMBER
========================================================= */

.why-number {
    display: block;

    margin-bottom: 30px;

    color: #2869e8;

    font-size: 12px;
    font-weight: 750;

    letter-spacing: 0.08em;
}


/* =========================================================
   WHY TEXT
========================================================= */

.why-card h3 {
    margin-bottom: 14px;

    color: #171c69;

    font-size: 19px;
    line-height: 1.3;

    font-weight: 730;
}

.why-card p {
    color: #6c7481;

    font-size: 13px;
    line-height: 1.75;
}


/* Küçük dekoratif çizgi */

.why-card::after {
    content: "";

    position: absolute;

    left: 28px;
    bottom: 27px;

    width: 34px;
    height: 3px;

    border-radius: 20px;

    background: #2869e8;

    opacity: 0.75;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 560px) {

    .why-section {
        padding: 70px 0 80px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 220px;
    }

}
/* =========================================================
   TEAM
========================================================= */

.team-section {
    padding: 105px 0 115px;
    background: #ffffff;
}

.team-section .section-heading {
    margin-bottom: 50px;
}


/* =========================================================
   FOUNDER
========================================================= */

.founder-card {
    display: grid;
    grid-template-columns: 285px 1fr;

    gap: 45px;

    align-items: center;

    margin-bottom: 28px;

    padding: 34px;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 12px 34px rgba(15, 27, 56, 0.06);
}

.founder-image {
    width: 100%;
    height: 265px;

    overflow: hidden;

    border-radius: 14px;

    background: #f4f5f7;
}

.founder-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.founder-content {
    max-width: 720px;
}

.team-role {
    display: inline-flex;

    margin-bottom: 11px;

    padding: 6px 10px;

    border-radius: 999px;

    background: #f0f3fb;

    color: #20206f;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

.founder-content h3 {
    margin-bottom: 6px;

    color: #151b29;

    font-size: 29px;
    font-weight: 760;

    letter-spacing: -0.025em;
}

.founder-title {
    display: block;

    margin-bottom: 18px;

    color: #2869e8;

    font-size: 14px;
    font-weight: 600;
}

.founder-content p {
    margin-bottom: 22px;

    color: #68717f;

    font-size: 14px;
    line-height: 1.75;
}

.team-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #20206f;

    font-size: 13px;
    font-weight: 700;
}

.team-link:hover {
    color: #2869e8;
}


/* =========================================================
   TEAM CARDS
========================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.team-card {
    min-height: 105px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.team-card:hover {
    transform: translateY(-3px);

    border-color: rgba(40, 105, 232, 0.20);

    box-shadow:
        0 12px 28px rgba(15, 27, 56, 0.07);
}

.team-card img {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 12px;
}

.team-card h3 {
    margin-bottom: 5px;

    color: #171c29;

    font-size: 14px;
    line-height: 1.35;

    font-weight: 700;
}

.team-card span {
    color: #2869e8;

    font-size: 11.5px;
    font-weight: 600;
}


/* =========================================================
   TEAM RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .founder-card {
        grid-template-columns: 220px 1fr;

        gap: 30px;
    }

    .founder-image {
        height: 230px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 620px) {

    .team-section {
        padding: 70px 0 80px;
    }

    .founder-card {
        grid-template-columns: 1fr;

        padding: 24px;
    }

    .founder-image {
        width: 100%;
        height: 300px;
    }

    .founder-content h3 {
        font-size: 25px;
    }

}
/* =========================================================
   REFERENCES
========================================================= */

.references-section {
    padding: 105px 0 110px;

    background: #f7f8fb;

    border-top: 1px solid #eef0f4;
}

.references-section .section-heading {
    margin-bottom: 48px;
}


/* =========================================================
   REFERENCES GRID
========================================================= */

.references-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    gap: 14px;
}


/* =========================================================
   REFERENCE CARD
========================================================= */

.reference-card {
    height: 135px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    border: 1px solid #e3e6ec;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 6px 20px rgba(15, 27, 56, 0.035);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.reference-card:hover {
    transform: translateY(-4px);

    border-color: rgba(40, 105, 232, 0.18);

    box-shadow:
        0 13px 30px rgba(15, 27, 56, 0.07);
}

.reference-card img {
    width: 100%;
    max-width: 125px;
    max-height: 80px;

    height: auto;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.78;

    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.reference-card:hover img {
    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.04);
}


/* =========================================================
   REFERENCES BUTTON
========================================================= */

.references-action {
    display: flex;
    justify-content: center;

    margin-top: 34px;
}

.references-link {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border: 1px solid #dfe3e9;
    border-radius: 8px;

    background: #ffffff;

    color: #20206f;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.references-link:hover {
    transform: translateY(-2px);

    border-color: rgba(32, 32, 111, 0.25);

    box-shadow:
        0 8px 22px rgba(15, 27, 56, 0.06);
}


/* =========================================================
   REFERENCES RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .references-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 700px) {

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 460px) {

    .references-section {
        padding: 70px 0 80px;
    }

    .references-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .reference-card {
        height: 115px;

        padding: 16px;
    }

}
/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta-section {
    padding: 0 0 105px;

    background: #f7f8fb;
}


/* =========================================================
   CTA BOX
========================================================= */

.contact-cta {
    position: relative;

    min-height: 315px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    padding: 58px 60px;

    overflow: hidden;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(59, 82, 210, 0.30),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #071326 0%,
            #101746 58%,
            #1c1e6d 100%
        );

    box-shadow:
        0 18px 45px rgba(12, 22, 52, 0.12);
}


/* Hafif dekoratif arka plan */

.contact-cta::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -110px;
    top: -160px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.contact-cta-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.contact-cta-label {
    display: inline-flex;

    margin-bottom: 17px;

    padding: 6px 11px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.86);

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.075em;

    text-transform: uppercase;
}

.contact-cta h2 {
    max-width: 680px;

    margin-bottom: 17px;

    color: #ffffff;

    font-size: clamp(34px, 3.5vw, 49px);
    line-height: 1.08;

    font-weight: 760;

    letter-spacing: -0.035em;
}

.contact-cta-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14.5px;
    line-height: 1.75;
}


/* =========================================================
   CTA ACTIONS
========================================================= */

.contact-cta-actions {
    position: relative;
    z-index: 2;

    min-width: 245px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.contact-cta-primary,
.contact-cta-mail {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.contact-cta-primary {
    background: #2869e8;
    color: #ffffff;
}

.contact-cta-primary:hover {
    background: #1d58ce;

    transform: translateY(-2px);
}

.contact-cta-mail {
    border: 1px solid rgba(255, 255, 255, 0.20);

    background: rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.9);
}

.contact-cta-mail:hover {
    background: rgba(255, 255, 255, 0.12);

    transform: translateY(-2px);
}

.mail-icon {
    font-size: 15px;
}


/* =========================================================
   CTA RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .contact-cta {
        align-items: flex-start;
        flex-direction: column;

        padding: 50px 42px;
    }

    .contact-cta-actions {
        width: 100%;
        min-width: 0;

        flex-direction: row;
    }

    .contact-cta-primary,
    .contact-cta-mail {
        flex: 1;
    }

}


@media (max-width: 560px) {

    .contact-cta-section {
        padding-bottom: 70px;
    }

    .contact-cta {
        min-height: auto;

        padding: 42px 24px;

        border-radius: 16px;
    }

    .contact-cta h2 {
        font-size: 32px;
    }

    .contact-cta-actions {
        flex-direction: column;
    }

    .contact-cta-primary,
    .contact-cta-mail {
        width: 100%;
    }

}
/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(59, 82, 210, 0.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071326 0%,
            #101746 60%,
            #1b1d69 100%
        );
}

.page-hero-inner {
    display: flex;
    align-items: center;

    min-height: 300px;
}

.page-hero-inner > div {
    max-width: 790px;
}

.page-label {
    display: inline-flex;

    margin-bottom: 18px;

    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);

    color: #77c6ff;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    margin-bottom: 22px;

    color: #ffffff;

    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.04;

    letter-spacing: -0.04em;
}

.page-hero h1 span {
    display: block;

    margin-top: 5px;

    color: #59b9f5;
}

.page-hero p {
    max-width: 670px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    padding: 110px 0;

    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 85px;
}

.about-intro-visual img {
    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(15, 27, 56, 0.11);
}

.about-intro-content h2 {
    margin-bottom: 24px;

    color: #151b29;

    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.about-intro-content > p {
    margin-bottom: 15px;

    color: #69717f;

    font-size: 14.5px;
    line-height: 1.8;
}

.about-intro-content > p strong {
    color: #252b38;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.vision-section {
    padding: 100px 0;

    background: #f7f8fb;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.vision-card {
    min-height: 300px;

    padding: 42px;

    border: 1px solid #e3e7ed;
    border-radius: 18px;

    background: #ffffff;
}

.vision-card > span {
    display: block;

    margin-bottom: 35px;

    color: #2869e8;

    font-size: 12px;
    font-weight: 750;

    letter-spacing: 0.08em;
}

.vision-card h2 {
    margin-bottom: 18px;

    color: #20206f;

    font-size: 29px;
}

.vision-card p {
    color: #69717f;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT VALUES
========================================================= */

.about-values {
    padding: 105px 0 115px;

    background: #ffffff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.about-values-grid article {
    min-height: 250px;

    padding: 30px 27px;

    border: 1px solid #e5e7eb;
    border-radius: 15px;

    background: #ffffff;
}

.about-values-grid article > span {
    display: block;

    margin-bottom: 28px;

    color: #2869e8;

    font-size: 11px;
    font-weight: 750;
}

.about-values-grid h3 {
    margin-bottom: 12px;

    color: #20206f;

    font-size: 18px;
}

.about-values-grid p {
    color: #707886;

    font-size: 12.5px;
    line-height: 1.7;
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .about-intro-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-intro-visual {
        max-width: 650px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 560px) {

    .page-hero {
        padding: 65px 0;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .about-intro {
        padding: 70px 0;
    }

    .about-intro-visual img {
        height: 320px;
    }

    .vision-section {
        padding: 70px 0;
    }

    .vision-card {
        padding: 30px 25px;

        min-height: auto;
    }

    .about-values {
        padding: 70px 0 80px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   TEAM PAGE
========================================================= */

.team-page-section {
    padding: 105px 0 115px;
    background: #ffffff;
}


/* =========================================================
   EXPERT GRID
========================================================= */

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.expert-card {
    overflow: hidden;

    border: 1px solid #e4e7ed;
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 8px 26px rgba(15, 27, 56, 0.05);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.expert-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 36px rgba(15, 27, 56, 0.09);
}


/* IMAGE */

.expert-image {
    height: 280px;

    overflow: hidden;

    background: #f4f5f7;
}

.expert-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* CONTENT */

.expert-content {
    padding: 25px;
}

.expert-role {
    display: inline-flex;

    margin-bottom: 11px;

    padding: 5px 9px;

    border-radius: 999px;

    background: #f1f4fb;

    color: #2869e8;

    font-size: 9px;
    font-weight: 750;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.founder-role {
    background: #20206f;
    color: #ffffff;
}

.expert-content h3 {
    margin-bottom: 11px;

    color: #171c29;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 730;
}

.expert-content > p {
    color: #6c7481;

    font-size: 12.5px;
    line-height: 1.7;
}


/* =========================================================
   BIO DETAILS
========================================================= */

.expert-content details {
    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid #edf0f4;
}

.expert-content summary {
    cursor: pointer;

    color: #20206f;

    font-size: 12px;
    font-weight: 700;
}

.expert-content details p {
    margin-top: 12px;

    color: #737b88;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   PROFESSIONAL TEAM
========================================================= */

.professional-team-section {
    padding: 105px 0 115px;

    background: #f7f8fb;

    border-top: 1px solid #eef0f4;
}

.professional-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.professional-card {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 24px;

    border: 1px solid #e3e6ec;
    border-radius: 15px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.professional-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(15, 27, 56, 0.07);
}

.professional-card img {
    width: 86px;
    height: 86px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 13px;
}

.professional-card h3 {
    margin-bottom: 6px;

    color: #171c29;

    font-size: 15px;
    line-height: 1.35;
}

.professional-card span {
    color: #2869e8;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   TEAM PAGE RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .professional-team-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .team-page-section,
    .professional-team-section {
        padding: 70px 0 80px;
    }

    .experts-grid {
        grid-template-columns: 1fr;
    }

    .expert-image {
        height: 330px;
    }

}
/* =========================================================
   SERVICES PAGE
========================================================= */

.service-detail-section {
    padding: 105px 0;

    background: #ffffff;
}

.service-detail-alt {
    background: #f7f8fb;

    border-top: 1px solid #eef0f4;
    border-bottom: 1px solid #eef0f4;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-items: center;

    gap: 80px;
}


/* =========================================================
   SERVICE VIDEO
========================================================= */

.service-detail-video {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 20px;

    background: #071326;

    box-shadow:
        0 18px 45px rgba(15, 27, 56, 0.11);
}

.service-detail-video video {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #071326;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-detail-content {
    max-width: 560px;
}

.service-brand {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}

.service-brand img {
    width: 62px;
    max-height: 55px;

    object-fit: contain;
}

.service-brand .cloth-service-logo {
    width: 48px;
}

.service-brand span {
    padding: 6px 10px;

    border-radius: 999px;

    background: #f1f5fd;

    color: #2869e8;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-detail-content h2 {
    margin-bottom: 20px;

    color: #171c29;

    font-size: clamp(38px, 3.8vw, 52px);
    line-height: 1;

    font-weight: 770;

    letter-spacing: -0.04em;
}

.service-detail-content > p {
    margin-bottom: 15px;

    color: #69717f;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE FEATURES
========================================================= */

.service-feature-list {
    display: flex;
    flex-direction: column;

    gap: 11px;

    margin: 27px 0 30px;
    padding-top: 23px;

    border-top: 1px solid #e9ecf1;
}

.service-feature-list span {
    color: #555e6c;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   SERVICE BUTTON
========================================================= */

.service-detail-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 21px;

    border-radius: 8px;

    background: #20206f;

    color: #ffffff;

    font-size: 13px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.service-detail-button:hover {
    background: #17175b;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta-section {
    padding: 0 0 105px;

    background: #ffffff;
}

.services-cta {
    min-height: 270px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 50px 55px;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(65, 83, 214, 0.28),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071326,
            #171b68
        );

    color: #ffffff;
}

.services-cta > div {
    max-width: 680px;
}

.services-cta > div > span {
    display: block;

    margin-bottom: 13px;

    color: #77c6ff;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.services-cta h2 {
    margin-bottom: 15px;

    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.services-cta p {
    max-width: 600px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.7;
}

.services-cta-button {
    min-width: 205px;
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 8px;

    background: #2869e8;

    color: #ffffff;

    font-size: 13px;
    font-weight: 650;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.services-cta-button:hover {
    background: #1d58ce;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .service-detail-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    /*
       CLOTH-AI'da mobilde video yine üstte olsun.
    */

    .service-detail-alt .service-detail-video {
        grid-row: 1;
    }

    .service-detail-alt .service-detail-content {
        grid-row: 2;
    }

    .service-detail-content {
        max-width: 680px;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 560px) {

    .service-detail-section {
        padding: 70px 0;
    }

    .service-detail-video {
      

        border-radius: 15px;
    }

    .service-detail-content h2 {
        font-size: 37px;
    }

    .services-cta-section {
        padding-bottom: 70px;
    }

    .services-cta {
        padding: 38px 24px;

        border-radius: 16px;
    }

    .services-cta-button {
        width: 100%;
    }

}
/* =========================================================
   REFERENCES PAGE
========================================================= */

.references-page-section {
    padding: 105px 0 115px;
    background: #ffffff;
}

.references-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================================
   REFERENCE PAGE CARD
========================================================= */

.reference-page-card {
    min-height: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 32px;

    border: 1px solid #e3e6ec;
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(15, 27, 56, 0.045);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.reference-page-card:hover {
    transform: translateY(-5px);

    border-color: rgba(40, 105, 232, 0.2);

    box-shadow:
        0 17px 38px rgba(15, 27, 56, 0.085);
}

.reference-page-card img {
    max-width: 155px;
    max-height: 95px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.8;

    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.reference-page-card:hover img {
    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.04);
}

.reference-page-card span {
    color: #4f5764;

    font-size: 13px;
    font-weight: 650;

    text-align: center;
}


/* =========================================================
   REFERENCE CTA
========================================================= */

.reference-cta-section {
    padding: 0 0 105px;
    background: #ffffff;
}

.reference-cta {
    min-height: 280px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 52px 56px;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(64, 84, 214, 0.28),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071326,
            #181c69
        );

    color: #ffffff;
}

.reference-cta > div {
    max-width: 680px;
}

.reference-cta .section-label {
    color: #77c6ff;
}

.reference-cta h2 {
    margin-bottom: 15px;

    font-size: clamp(31px, 3.2vw, 44px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.reference-cta p {
    max-width: 590px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.75;
}

.reference-cta-button {
    min-width: 205px;
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 8px;

    background: #2869e8;
    color: #ffffff;

    font-size: 13px;
    font-weight: 650;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.reference-cta-button:hover {
    background: #1d58ce;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .references-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 560px) {

    .references-page-section {
        padding: 70px 0 80px;
    }

    .references-page-grid {
        grid-template-columns: 1fr;
    }

    .reference-page-card {
        min-height: 170px;
    }

    .reference-cta-section {
        padding-bottom: 70px;
    }

    .reference-cta {
        padding: 38px 24px;

        border-radius: 16px;
    }

    .reference-cta-button {
        width: 100%;
    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-section {
    padding: 105px 0 115px;
    background: #f7f8fb;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    align-items: start;

    gap: 80px;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
    padding-top: 20px;
}

.contact-information h2 {
    margin-bottom: 18px;

    color: #171c29;

    font-size: clamp(34px, 3.3vw, 47px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.contact-information-intro {
    max-width: 470px;

    margin-bottom: 38px;

    color: #69717f;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO ITEMS
========================================================= */

.contact-info-list {
    display: flex;
    flex-direction: column;

    gap: 17px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 46px 1fr;

    align-items: center;

    gap: 15px;

    padding: 19px;

    border: 1px solid #e3e6ec;
    border-radius: 13px;

    background: #ffffff;
}

.contact-info-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eef3ff;

    color: #20206f;

    font-size: 16px;
    font-weight: 700;
}

.contact-info-item > div:last-child > span {
    display: block;

    margin-bottom: 4px;

    color: #9299a4;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-item a,
.contact-info-item p {
    color: #303746;

    font-size: 13px;
    line-height: 1.6;

    font-weight: 550;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-wrapper {
    padding: 40px;

    border: 1px solid #e1e5eb;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 14px 38px rgba(15, 27, 56, 0.07);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #2869e8;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin-bottom: 10px;

    color: #171c29;

    font-size: 29px;

    letter-spacing: -0.025em;
}

.contact-form-heading p {
    color: #737b88;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #343b48;

    font-size: 12px;
    font-weight: 650;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dfe3e9;
    border-radius: 9px;

    background: #ffffff;

    color: #242a36;

    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 48px;

    padding: 0 14px;
}

.form-group textarea {
    min-height: 150px;

    padding: 14px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2869e8;

    box-shadow:
        0 0 0 3px rgba(40, 105, 232, 0.09);
}

.form-group small {
    color: #c43c3c;

    font-size: 11px;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 4px;

    border: 0;
    border-radius: 9px;

    background: #20206f;

    color: #ffffff;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-submit:hover {
    background: #17175b;

    transform: translateY(-2px);
}


/* =========================================================
   ALERTS
========================================================= */

.form-alert {
    margin-bottom: 22px;

    padding: 13px 15px;

    border-radius: 9px;

    font-size: 12px;
    line-height: 1.5;
}

.form-alert-success {
    border: 1px solid #bee4ca;

    background: #effaf2;

    color: #27723c;
}

.form-alert-error {
    border: 1px solid #efcaca;

    background: #fff3f3;

    color: #a83b3b;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .contact-page-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-information {
        max-width: 650px;
    }

}


@media (max-width: 560px) {

    .contact-page-section {
        padding: 70px 0 80px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}
.contact-info-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}
/* =========================================================
   LEGAL PAGE
========================================================= */

.legal-section {
    padding: 100px 0 115px;
    background: #f7f8fb;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);

    align-items: start;
    gap: 60px;
}


/* =========================================================
   LEGAL MENU
========================================================= */

.legal-menu {
    position: sticky;
    top: 30px;

    display: flex;
    flex-direction: column;

    padding: 22px;

    border: 1px solid #e3e6ec;
    border-radius: 14px;

    background: #ffffff;
}

.legal-menu > span {
    margin-bottom: 15px;

    color: #8b93a0;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.legal-menu a {
    padding: 11px 0;

    border-bottom: 1px solid #edf0f4;

    color: #404755;

    font-size: 12.5px;
    font-weight: 600;
}

.legal-menu a:last-child {
    border-bottom: none;
}

.legal-menu a:hover {
    color: #2869e8;
}


/* =========================================================
   LEGAL CONTENT
========================================================= */

.legal-content {
    display: flex;
    flex-direction: column;

    gap: 35px;
}

.legal-article {
    padding: 45px;

    scroll-margin-top: 30px;

    border: 1px solid #e2e6ec;
    border-radius: 18px;

    background: #ffffff;
}

.legal-article h2 {
    margin-bottom: 18px;

    color: #171c29;

    font-size: 32px;

    letter-spacing: -0.03em;
}

.legal-article h3 {
    margin-top: 31px;
    margin-bottom: 11px;

    color: #20206f;

    font-size: 17px;
}

.legal-article p {
    margin-bottom: 13px;

    color: #69717f;

    font-size: 13.5px;
    line-height: 1.8;
}

.legal-article ul {
    margin: 13px 0 20px;
    padding-left: 20px;
}

.legal-article li {
    margin-bottom: 9px;

    color: #69717f;

    font-size: 13.5px;
    line-height: 1.7;
}


/* =========================================================
   LEGAL CONTACT
========================================================= */

.legal-contact,
.legal-info-box {
    margin-top: 25px;
    padding: 20px;

    border: 1px solid #e3e7ee;
    border-radius: 12px;

    background: #f7f8fb;
}

.legal-contact {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.legal-contact strong {
    margin-bottom: 3px;

    color: #20206f;
}

.legal-contact a {
    color: #4e5765;

    font-size: 13px;
}

.legal-contact a:hover {
    color: #2869e8;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LEGAL RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .legal-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .legal-menu {
        position: static;
    }

}


@media (max-width: 560px) {

    .legal-section {
        padding: 70px 0 80px;
    }

    .legal-article {
        padding: 28px 22px;
    }

    .legal-article h2 {
        font-size: 27px;
    }

}
/* =========================================================
   MOBILE NAVIGATION - FINAL
========================================================= */

/* Masaüstünde hamburger görünmez */
.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    padding: 8px;

    border: 0;
    border-radius: 8px;

    background: transparent;

    cursor: pointer;

    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: #f4f6fa;
}


/* Hamburger çizgileri */
.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    margin: 5px auto;

    border-radius: 20px;

    background: #20206f;

    transform-origin: center;

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}


/* Açıldığında X görünümü */
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   TABLET / MOBILE MENU
========================================================= */

@media (max-width: 850px) {

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .navbar {
        position: relative;

        min-height: 92px;

        display: flex;
        align-items: center;

        gap: 10px;
    }


    /* Logo */
    .navbar-logo {
        flex-shrink: 0;
    }

    .navbar-logo img {
        width: 95px;
        height: auto;
    }


    /* Hamburger görünür */
    .menu-toggle {
        display: block;

        margin-left: auto;
    }


    /* Menü kapalı durum */
    .nav-links {
        position: absolute;

        top: calc(100% - 3px);
        left: 0;
        right: 0;

        z-index: 9999;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 10px;

        border: 1px solid #e4e7ed;
        border-radius: 14px;

        background: #ffffff;

        box-shadow:
            0 18px 45px rgba(15, 27, 56, 0.14);
    }


    /* Menü açık durum */
    .nav-links.is-open {
        display: flex;
    }


    /* Mobil menü linkleri */
    .nav-links a {
        width: 100%;

        display: flex;
        align-items: center;

        padding: 13px 14px;

        border-radius: 9px;

        color: #252936;

        font-size: 14px;
        font-weight: 550;

        transition:
            background 0.2s ease,
            color 0.2s ease;
    }

    .nav-links a:hover {
        background: #f4f6fb;
        color: #20206f;
    }


    /* Masaüstü alt çizgi efektini mobilde kaldır */
    .nav-links a::after {
        display: none;
    }


    /* Bize Ulaşın */
    .nav-contact {
        min-height: 41px;

        margin-left: 2px;

        padding: 0 15px;

        border-radius: 8px;

        font-size: 12.5px;

        white-space: nowrap;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .navbar {
        min-height: 84px;

        gap: 6px;
    }

    .navbar-logo img {
        width: 85px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;

        padding: 7px;
    }

    .menu-toggle span {
        width: 21px;
    }

    .nav-contact {
        min-height: 38px;

        padding: 0 12px;

        font-size: 11.5px;
    }

    .nav-links {
        top: calc(100% - 2px);

        left: 0;
        right: 0;

        padding: 9px;

        border-radius: 12px;
    }

    .nav-links a {
        padding: 12px;

        font-size: 13.5px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .navbar-logo img {
        width: 78px;
    }

    .nav-contact {
        padding: 0 9px;

        font-size: 10.5px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }
}