/* ==========================================================
   KUZEY MATBAACILIK
   MAGNET / MAGNET BASKI SAYFASI
========================================================== */


/* ==========================================================
   MAGNET BASKI HERO
========================================================== */

.magnet-hero {
    position: relative;

    padding: 150px 0 110px;

    overflow: hidden;
}

.magnet-hero::before {
    content: "";

    position: absolute;

    top: -250px;
    right: -200px;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199, 155, 106, 0.13) 0%,
            rgba(199, 155, 106, 0.04) 40%,
            transparent 70%
        );

    pointer-events: none;
}

.magnet-hero::after {
    content: "";

    position: absolute;

    bottom: -250px;
    left: -250px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199, 155, 106, 0.06),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   HERO İÇ YAPI
========================================================== */

.magnet-hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


/* ==========================================================
   HERO İÇERİK
========================================================== */

.magnet-hero-content {
    max-width: 650px;
}

.magnet-tag {
    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;

    padding: 8px 20px;

    border:
        1px solid
        rgba(199, 155, 106, 0.3);

    border-radius: 50px;

    background:
        rgba(199, 155, 106, 0.08);

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.magnet-hero-content h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(2.8rem, 5vw, 5rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.magnet-hero-content h1 span {
    color: #c79b6a;
}

.magnet-hero-content > p {
    max-width: 600px;

    margin: 0;

    color: #aeb4bd;

    font-size: 1.05rem;

    line-height: 1.9;
}


/* ==========================================================
   HERO BUTONLARI
========================================================== */

.magnet-hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}

.magnet-btn-primary,
.magnet-btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 0.92rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.magnet-btn-primary {
    background: #c79b6a;

    color: #ffffff;
}

.magnet-btn-primary:hover {
    transform: translateY(-3px);

    background: #d8b486;

    box-shadow:
        0 12px 30px
        rgba(199, 155, 106, 0.25);
}

.magnet-btn-secondary {
    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    background:
        rgba(255, 255, 255, 0.04);

    color: #ffffff;
}

.magnet-btn-secondary:hover {
    transform: translateY(-3px);

    border-color: #c79b6a;

    color: #c79b6a;
}


/* ==========================================================
   HERO ALT BİLGİLER
========================================================== */

.magnet-hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 45px;
}

.magnet-hero-info-item {
    display: flex;

    align-items: center;

    gap: 13px;
}

.magnet-hero-info-item > i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    background:
        rgba(199, 155, 106, 0.1);

    color: #c79b6a;

    font-size: 1rem;
}

.magnet-hero-info-item div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.magnet-hero-info-item strong {
    color: #ffffff;

    font-size: 0.85rem;

    font-weight: 700;
}

.magnet-hero-info-item span {
    color: #818993;

    font-size: 0.75rem;
}


/* ==========================================================
   HERO GÖRSEL ALANI
========================================================== */

.magnet-hero-visual {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.magnet-hero-image {
    position: relative;

    width: 86%;

    overflow: hidden;

    border-radius: 30px;

    transform: rotate(3deg);

    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, 0.45);
}

.magnet-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: inherit;

    pointer-events: none;
}

.magnet-hero-image img {
    display: block;

    width: 100%;

    height: 580px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.magnet-hero-image:hover img {
    transform: scale(1.05);
}


/* ==========================================================
   HERO YÜZEN KART
========================================================== */

.magnet-floating-card {
    position: absolute;

    left: 0;

    bottom: 35px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 16px;

    background:
        rgba(20, 20, 20, 0.88);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(15px);
}

.magnet-floating-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 46px;
    height: 46px;

    border-radius: 12px;

    background:
        rgba(199, 155, 106, 0.12);

    color: #c79b6a;

    font-size: 1.1rem;
}

.magnet-floating-card > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.magnet-floating-card strong {
    color: #ffffff;

    font-size: 0.88rem;
}

.magnet-floating-card span {
    color: #858c95;

    font-size: 0.76rem;
}


/* ==========================================================
   MAGNET BASKI TANITIM
========================================================== */

.magnet-intro {
    padding: 110px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}

.magnet-intro-inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 80px;
}


/* ==========================================================
   INTRO İÇERİK
========================================================== */

.magnet-intro-content {
    max-width: 700px;
}

.section-label {
    display: block;

    margin-bottom: 18px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.magnet-intro-content h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1px;
}

.magnet-intro-content p {
    margin: 0 0 18px;

    color: #aeb4bd;

    font-size: 0.98rem;

    line-height: 1.9;
}

.magnet-intro-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   INTRO ÖZELLİKLER
========================================================== */

.magnet-intro-features {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.magnet-feature {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.magnet-feature:hover {
    transform: translateX(6px);

    border-color:
        rgba(199, 155, 106, 0.3);

    background:
        rgba(199, 155, 106, 0.04);
}

.magnet-feature-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    background:
        rgba(199, 155, 106, 0.1);

    color: #c79b6a;

    font-size: 1.1rem;
}

.magnet-feature h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 1rem;

    font-weight: 700;
}

.magnet-feature p {
    margin: 0;

    color: #8f969f;

    font-size: 0.88rem;

    line-height: 1.7;
}


/* ==========================================================
   MAGNET ÇEŞİTLERİ
========================================================== */

.magnet-types {
    padding: 110px 0;
}

.magnet-section-heading {
    max-width: 800px;

    margin:
        0 auto 60px;

    text-align: center;
}

.magnet-section-heading > span {
    display: block;

    margin-bottom: 15px;

    color: #c79b6a;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.magnet-section-heading h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1px;
}

.magnet-section-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #aeb4bd;

    font-size: 0.98rem;

    line-height: 1.8;
}


/* ==========================================================
   MAGNET KART GRID
========================================================== */

.magnet-types-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* ==========================================================
   MAGNET KART
========================================================== */

.magnet-type-card {
    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background: #171717;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.magnet-type-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(199, 155, 106, 0.35);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.35);
}


/* ==========================================================
   MAGNET KART GÖRSEL
========================================================== */

.magnet-type-image {
    position: relative;

    height: 270px;

    overflow: hidden;
}

.magnet-type-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.35),
            transparent 55%
        );

    pointer-events: none;
}

.magnet-type-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.magnet-type-card:hover
.magnet-type-image img {
    transform: scale(1.07);
}


/* ==========================================================
   MAGNET KART İÇERİK
========================================================== */

.magnet-type-content {
    padding: 30px;
}

.magnet-type-content > span {
    display: block;

    margin-bottom: 10px;

    color:
        rgba(199, 155, 106, 0.7);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1px;
}

.magnet-type-content h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.25rem;

    font-weight: 700;
}

.magnet-type-content p {
    min-height: 105px;

    margin: 0 0 25px;

    color: #969da7;

    font-size: 0.9rem;

    line-height: 1.8;
}


/* ==========================================================
   KART LİNK
========================================================== */

.magnet-type-content a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #c79b6a;

    text-decoration: none;

    font-size: 0.88rem;

    font-weight: 700;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.magnet-type-content a:hover {
    gap: 15px;

    color: #d8b486;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .magnet-hero-inner {
        gap: 50px;
    }

    .magnet-intro-inner {
        gap: 50px;
    }

    .magnet-types-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ==========================================================
   TABLET / KÜÇÜK EKRAN
========================================================== */

@media (max-width: 900px) {

    .magnet-hero-inner {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .magnet-hero-content {
        max-width: 750px;

        margin: 0 auto;

        text-align: center;
    }

    .magnet-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .magnet-hero-buttons {
        justify-content: center;
    }

    .magnet-hero-info {
        justify-content: center;
    }

    .magnet-hero-visual {
        min-height: 500px;
    }

    .magnet-hero-image {
        width: 80%;
    }


    .magnet-intro-inner {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .magnet-intro-content {
        max-width: 800px;

        margin: 0 auto;

        text-align: center;
    }

}


/* ==========================================================
   MOBİL
========================================================== */

@media (max-width: 600px) {

    .magnet-hero {
        padding: 110px 0 75px;
    }

    .magnet-hero-content h1 {
        font-size: 2.5rem;

        letter-spacing: -0.5px;
    }

    .magnet-hero-content > p {
        font-size: 0.95rem;
    }

    .magnet-hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .magnet-btn-primary,
    .magnet-btn-secondary {
        width: 100%;
    }

    .magnet-hero-info {
        flex-direction: column;

        align-items: flex-start;

        width: max-content;

        max-width: 100%;

        margin-left: auto;
        margin-right: auto;
    }

    .magnet-hero-visual {
        min-height: 400px;
    }

    .magnet-hero-image {
        width: 90%;

        border-radius: 22px;
    }

    .magnet-hero-image img {
        height: 450px;
    }

    .magnet-floating-card {
        left: 0;

        bottom: 15px;

        max-width: calc(100% - 20px);

        padding: 14px 16px;
    }

    .magnet-intro,
    .magnet-types {
        padding: 75px 0;
    }

    .magnet-intro-content h2,
    .magnet-section-heading h2 {
        font-size: 2rem;
    }

    .magnet-feature {
        padding: 20px;
    }

    .magnet-types-grid {
        grid-template-columns: 1fr;
    }

    .magnet-type-image {
        height: 240px;
    }

    .magnet-type-content {
        padding: 25px;
    }

    .magnet-type-content p {
        min-height: auto;
    }

}

/* ==========================================================
   MAGNET CTA
========================================================== */

.magnet-cta {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.magnet-cta-inner {
    position: relative;
    overflow: hidden;
    padding: 75px 60px;
    text-align: center;
    border: 1px solid rgba(199, 155, 106, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(199, 155, 106, 0.12),
            rgba(255, 255, 255, 0.025) 45%,
            rgba(255, 255, 255, 0.015) 100%
        );
}

.magnet-cta-inner::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 155, 106, 0.16),
        transparent 70%
    );
    pointer-events: none;
}

.magnet-cta-inner > * {
    position: relative;
    z-index: 1;
}

.magnet-cta-inner > span {
    display: block;
    margin-bottom: 15px;
    color: #c79b6a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.magnet-cta-inner h2 {
    max-width: 760px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.magnet-cta-inner p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: #aeb4bd;
    font-size: 0.98rem;
    line-height: 1.8;
}

.magnet-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 12px;
    background: #c79b6a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.magnet-cta-button:hover {
    transform: translateY(-3px);
    background: #d8b486;
    box-shadow:
        0 12px 30px rgba(199, 155, 106, 0.25);
}

@media (max-width: 600px) {

    .magnet-cta {
        padding: 75px 0;
    }

    .magnet-cta-inner {
        padding: 55px 25px;
        border-radius: 22px;
    }

    .magnet-cta-inner h2 {
        font-size: 2rem;
    }

    .magnet-cta-button {
        width: 100%;
    }

}