﻿
.products-index-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 14%, #f8fafc 100%);
}

.section-hero {
    position: relative;
    padding: 72px 0 40px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.section {
    padding: 72px 0;
}

.products-index__hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.products-index__hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.products-index__hero-title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.14;
    letter-spacing: -0.03em;
    max-width: 720px;
    color: #0f172a;
}

.products-index__hero-text {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
}

.products-index__hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.products-index__hero-side {
    display: grid;
    gap: 14px;
}

.products-index__hero-panel {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    color: #ffffff;
}

    .products-index__hero-panel .products-index__card-title {
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 20px;
    }

    .products-index__hero-panel p {
        margin: 0;
        color: rgba(255, 255, 255, 0.84);
        font-size: 15px;
        line-height: 1.8;
    }

.products-index__hero-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.products-index__hero-mini-card {
    padding: 18px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

    .products-index__hero-mini-card strong {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 1.3;
        color: #0f172a;
    }

    .products-index__hero-mini-card span {
        display: block;
        font-size: 14px;
        line-height: 1.65;
        color: #64748b;
    }

.page-head {
    margin-bottom: 32px;
}

.products-index__section-title {
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #0f172a;
}

.page-text {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.85;
    color: #475569;
}

.page-head .page-text {
    max-width: 820px;
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
}

.products-index__intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.products-index__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.products-index__card-title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.card,
.empty-box {
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card {
    padding: 28px;
}

    .card p,
    .empty-box {
        font-size: 15px;
        line-height: 1.85;
        color: #64748b;
    }

.empty-box {
    padding: 28px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #ffffff;
    color: #475569;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn,
.btn.btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid transparent;
    color: #ffffff;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
    }

    .btn.btn--secondary {
        background: #ffffff;
        color: #0f172a;
        border: 1px solid rgba(148, 163, 184, 0.24);
    }

        .btn.btn--secondary:hover {
            border-color: rgba(37, 99, 235, 0.24);
            color: #1d4ed8;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        }

.products-index__cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
    color: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

    .products-index__cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 26%), radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.03), transparent 24%);
        pointer-events: none;
    }

    .products-index__cta-band .container {
        position: relative;
        z-index: 1;
    }

    .products-index__cta-band .page-title {
        color: #0f172a;
    }

    .products-index__cta-band .page-text {
        color: #475569;
    }

    .products-index__cta-band .eyebrow {
        background: rgba(15, 23, 42, 0.05) !important;
        color: #334155 !important;
        border: 1px solid rgba(148, 163, 184, 0.16);
    }

    .products-index__cta-band .btn {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        color: #ffffff;
        box-shadow: 0 10px 28px rgba(37, 99, 235, 0.16);
    }

        .products-index__cta-band .btn.btn--secondary {
            background: #ffffff;
            color: #1e293b;
            border-color: rgba(148, 163, 184, 0.22);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
        }

.products-index__cta-note {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .section

{
    padding: 56px 0;
}

.section-hero {
    padding: 48px 0 28px;
}

.products-index__hero-wrap,
.products-index__intro-grid,
.grid-2 {
    grid-template-columns: 1fr;
    gap: 18px !important;
}

.card,
.empty-box,
.products-index__hero-panel {
    padding: 24px;
    border-radius: 22px;
}

}

@media (max-width: 640px) {
    .section

{
    padding: 44px 0;
}

.section-hero {
    padding: 40px 0 24px;
}

.products-index__section-title {
    font-size: 24px;
}

.products-index__hero-title {
    font-size: 28px;
}

.products-index__hero-text,
.page-text,
.page-head .page-text,
.card p,
.empty-box {
    font-size: 15px;
    line-height: 1.8;
}

.products-index__hero-mini-grid {
    grid-template-columns: 1fr;
}

.page-head {
    margin-bottom: 24px;
}

.actions {
    flex-direction: column;
    margin-top: 22px;
}

.btn,
.btn.btn--secondary {
    width: 100%;
}

.chip-row,
.products-index__hero-chips {
    gap: 8px;
}

.chip {
    font-size: 12px;
    padding: 9px 12px;
}

}


.contact-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 14%, #f8fafc 100%);
}

.section-hero {
    position: relative;
    padding: 72px 0 40px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.section {
    padding: 72px 0;
}

.contact-page__hero-title {
    margin: 0 0 16px;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.03em;
    max-width: 760px;
    color: #0f172a;
}

.contact-page__hero-text,
.page-text {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.52fr);
    gap: 24px;
    align-items: start;
}

.contact-page__aside,
.demo-page__aside {
    display: grid;
    gap: 20px;
}

.page-head {
    margin-bottom: 18px;
}

.card,
.note-box,
.form-shell,
.contact-page__map-shell {
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card,
.note-box,
.form-shell,
.contact-page__map-shell {
    padding: 28px;
}

    .card h2,
    .card h3,
    .form-shell h2,
    .contact-page__card-title {
        margin: 0 0 12px;
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: -0.01em;
        color: #0f172a;
        font-weight: 700;
    }

    .card p,
    .note-box,
    .note-box p,
    .form-shell .page-text,
    .field-note {
        font-size: 15px;
        line-height: 1.8;
        color: #64748b;
    }

.contact-page__mini-stack {
    display: grid;
    gap: 14px;
}

.contact-page__mini-block strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
}

.contact-page__mini-block p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.contact-page__quick-links {
    display: grid;
    gap: 10px;
}

    .contact-page__quick-links a {
        color: #111827;
        font-weight: 600;
        text-decoration: none;
    }

        .contact-page__quick-links a:hover {
            color: #1d4ed8;
        }

.contact-page__network-card .chip-row {
    margin-top: 0;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.chip {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #ffffff;
    color: #475569;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.contact-page__map-shell {
    position: relative;
    overflow: hidden;
}

.contact-page__map-frame {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #f8fafc;
    padding: 14px;
}

    .contact-page__map-frame img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 14px;
    }

.contact-page__map-list {
    margin: 18px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.85;
}

.contact-page__map-note {
    margin: 12px 0 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.7;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    align-items: stretch;
}

.btn,
.btn.btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
    }

    .btn.btn--secondary {
        background: #ffffff;
        color: #0f172a;
        border-color: rgba(148, 163, 184, 0.24);
    }

        .btn.btn--secondary:hover {
            border-color: rgba(37, 99, 235, 0.24);
            color: #1d4ed8;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        }

.demo-page__form .page-title,
.demo-page__form .page-text,
.demo-page__form .field-note,
.demo-page__form .note-box,
.demo-page__form .note-box * {
    overflow-wrap: anywhere;
}

.demo-page__form .actions > * {
    min-width: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    min-width: 0;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        border-color: rgba(37, 99, 235, 0.45);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

.field textarea {
    resize: vertical;
    min-height: 140px;
}

.field-note {
    margin: 8px 0 0;
}

.field-error {
    margin: 8px 0 0;
    color: #dc2626;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .section {
        padding: 56px 0;
    }

    .section-hero {
        padding: 48px 0 28px;
    }

    .contact-page__layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card,
    .note-box,
    .form-shell,
    .contact-page__map-shell {
        padding: 24px;
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 44px 0;
    }

    .section-hero {
        padding: 40px 0 24px;
    }

    .contact-page__hero-title,
    .demo-page__form .page-title {
        font-size: 26px !important;
        line-height: 1.2;
    }

    .contact-page__hero-text,
    .page-text,
    .field-note,
    .note-box,
    .note-box *,
    .contact-page__map-list {
        font-size: 15px;
        line-height: 1.8;
    }

    .demo-page__form .form-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .demo-page__form .field,
    .demo-page__form .field--full {
        grid-column: 1 / -1;
    }

    .page-head {
        margin-bottom: 16px;
    }

    .actions {
        flex-direction: column;
        margin-top: 16px;
    }

        .actions .btn,
        .actions button,
        .actions a {
            width: 100%;
        }

    .chip-row {
        gap: 8px;
    }

    .chip {
        font-size: 12px;
        padding: 9px 12px;
    }
}


/* ── Navbar link aralığı ── */
.nm-nav__scroll {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 28px; /* eskisi 8px, şimdi 28px */
}

.nm-nav__link,
.nm-nav__item {
    flex-shrink: 0;
}

/* ── Dropdown boşluk sorunu düzeltmesi ──
                   Panel ile trigger arasına köprü (bridge) ekliyoruz
                   böylece fare geçerken menü kapanmıyor */
.nm-nav__item {
    position: relative;
    /* padding-bottom kadar köprü alanı */
    padding-bottom: 0;
}

/* Panel'i trigger'a yapıştır - gap: 0 */
.nm-nav__panel--mega,
.nm-nav__panel--small {
    top: calc(100% + 2px); /* eskisi 16px, şimdi 2px */
}

/* Trigger ile panel arasına görünmez köprü */
.nm-nav__item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 10px; /* köprü yüksekliği */
    background: transparent;
    display: none;
}

.nm-nav__item:hover::after {
    display: block;
}

/* Aktif link stili */
.nm-nav__link.is-active,
.nm-nav__trigger.is-active {
    color: #111827;
}

    .nm-nav__link.is-active::after,
    .nm-nav__trigger.is-active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        height: 2px;
        background: #f59e0b;
    }

/* Panel içi aktif alt link — sarı border + açık turuncu arka plan */
.nm-nav__panel-link.is-active {
    border-color: #f59e0b !important;
    background: #fff7ed !important;
}

/*    .nm-nav__panel-link.is-active strong {
        color: #92400e;
    }*/

/* Mobil aktif çizgiyi gizle */
@media (max-width: 992px) {
    .nm-nav__scroll {
        gap: 8px;
    }

    .nm-nav__link.is-active::after,
    .nm-nav__trigger.is-active::after {
        display: none;
    }
    /* Mobil aktif: hafif arka plan vurgulama */
    .nm-nav__link.is-active {
        background: #f3f4f6;
    }
}


.home-v4 {
    background: #f5f7fb;
}

.home-v4 .container {
    max-width: 1340px;
}

.home-v4-hero {
    padding: 22px 0 18px;
    background: radial-gradient(circle at 89% 18%, rgba(74, 108, 255, 0.08) 0, rgba(74, 108, 255, 0.08) 13%, transparent 13.2%) no-repeat, radial-gradient(circle at 85% 26%, rgba(74, 108, 255, 0.05) 0, rgba(74, 108, 255, 0.05) 22%, transparent 22.2%) no-repeat, #f5f7fb;
}

.home-v4-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid #e5ebf5;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.05);
    padding: 30px 28px 18px;
}

    .home-v4-shell::before {
        content: "";
        position: absolute;
        right: -120px;
        top: -80px;
        width: 440px;
        height: 440px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(58, 98, 255, 0.10) 0%, rgba(58, 98, 255, 0.03) 48%, rgba(58, 98, 255, 0) 72%);
        pointer-events: none;
    }

    .home-v4-shell::after {
        content: "";
        position: absolute;
        right: 96px;
        top: 64px;
        width: 160px;
        height: 160px;
        background-image: radial-gradient(rgba(58, 98, 255, 0.18) 1px, transparent 1px);
        background-size: 12px 12px;
        opacity: .55;
        pointer-events: none;
    }

.home-v4-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 24px;
    align-items: center;
}

.home-v4-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #edf2ff;
    color: #2e63dd;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.home-v4-title {
    margin: 0;
    color: #223151;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 700;
    max-width: 520px;
}

.home-v4-title-line {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #235fe2;
    margin: 16px 0 14px;
}

.home-v4-text {
    max-width: 520px;
    margin: 0;
    color: #5d6981;
    font-size: 16px;
    line-height: 1.85;
}

.home-v4-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.home-v4-btn,
.home-v4-btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: .18s ease;
}

.home-v4-btn {
    background: #1658d8;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(22, 88, 216, 0.16);
}

.home-v4-btn--ghost {
    background: #ffffff;
    color: #1858d8;
    border: 1px solid #bfd1ff;
}

    .home-v4-btn:hover,
    .home-v4-btn--ghost:hover {
        transform: translateY(-1px);
    }

.home-v4-btn__icon {
    margin-left: 10px;
    font-size: 16px;
    line-height: 1;
}

.home-v4-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    max-width: 680px;
}

.home-v4-stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.home-v4-stat__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: #2e63dd;
    font-size: 18px;
    flex: 0 0 40px;
}

.home-v4-stat:nth-child(2) .home-v4-stat__icon {
    background: #edf8ef;
    color: #1a9f4f;
}

.home-v4-stat__title {
    display: block;
    color: #283654;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.home-v4-stat__text {
    display: block;
    margin-top: 2px;
    color: #6c7890;
    font-size: 13px;
    line-height: 1.45;
}

.home-v4-devices {
    position: relative;
    min-height: 430px;
}

.home-v4-device-icon {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2e63dd;
    font-size: 24px;
    z-index: 4;
}

.home-v4-device-icon--cloud {
    right: 10px;
    top: 24px;
}

.home-v4-device-icon--chart {
    left: 18px;
    bottom: 52px;
}

.home-v4-device-icon--shield {
    right: 30px;
    bottom: 30px;
}

.home-v4-laptop {
    position: absolute;
    right: 63px;
    top: 8px;
    width: 660px;
    max-width: 100%;
    z-index: 2;
}

.home-v4-laptop__screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 10px solid #0f1115;
    border-bottom-width: 14px;
    border-radius: 20px 20px 14px 14px;
    overflow: hidden;
    background: #0f1115;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    margin-left:25px;
}

    .home-v4-laptop__screen img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.home-v4-laptop__base {
    position: relative;
    width: 108%;
    height: 18px;
    margin-left: 0%;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(180deg, #d7dce5 0%, #a9b1be 100%);
}

    .home-v4-laptop__base::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 1px;
        transform: translateX(-50%);
        width: 150px;
        height: 9px;
        border-radius: 0 0 12px 12px;
        background: #8e97a7;
    }

.home-v4-phone {
    position: absolute;
    right: 46px;
    top: 58px;
    width: 160px;
    z-index: 3;
}

.home-v4-phone__frame {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    border: 5px solid #1a1c21;
    border-radius: 32px;
    overflow: hidden;
    background: #0f1115;
    position: relative;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

    .home-v4-phone__frame::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 9px;
        transform: translateX(-50%);
        width: 72px;
        height: 16px;
        border-radius: 999px;
        background: #111216;
        z-index: 3;
    }

    .home-v4-phone__frame img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.home-v4-cards {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.home-v4-card {
    min-height: 220px;
    border-radius: 18px;
    border: 1px solid #e4eaf4;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
}

.home-v4-card--blue {
    background: linear-gradient(180deg, #fafcff 0%, #f7faff 100%);
}

.home-v4-card--green {
    background: linear-gradient(180deg, #fbfefb 0%, #f7fbf7 100%);
}

.home-v4-card--orange {
    background: linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
}

.home-v4-card--purple {
    background: linear-gradient(180deg, #fcfbff 0%, #f8f5ff 100%);
}

.home-v4-card--teal {
    background: linear-gradient(180deg, #fbfdfe 0%, #f5fbfc 100%);
}

.home-v4-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.home-v4-card--blue .home-v4-card__icon {
    background: #edf3ff;
    color: #2361df;
}

.home-v4-card--green .home-v4-card__icon {
    background: #edf8ef;
    color: #1aa14f;
}

.home-v4-card--orange .home-v4-card__icon {
    background: #fff1df;
    color: #f28e1b;
}

.home-v4-card--purple .home-v4-card__icon {
    background: #efe7ff;
    color: #704dff;
}

.home-v4-card--teal .home-v4-card__icon {
    background: #e8f7fa;
    color: #178ba7;
}

.home-v4-card__title {
    margin: 0 0 10px;
    color: #24324f;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.home-v4-card__text {
    margin: 0;
    color: #69758d;
    font-size: 14px;
    line-height: 1.75;
    flex: 1 1 auto;
}

.home-v4-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: #1d57d5;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    min-height: 20px;
}

    .home-v4-card__link span {
        margin-left: 8px;
    }

.home-v4-card--green .home-v4-card__link {
    color: #1aa14f;
}

.home-v4-card--orange .home-v4-card__link {
    color: #f28e1b;
}

.home-v4-card--purple .home-v4-card__link {
    color: #704dff;
}

.home-v4-card--teal .home-v4-card__link {
    color: #178ba7;
}

.home-v4-support {
    margin-top: 18px;
    border: 1px solid #e4eaf4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    display: grid;
    grid-template-columns: 1.05fr 2fr;
    overflow: hidden;
}

.home-v4-support__primary {
    background: linear-gradient(135deg, #1457d8 0%, #155edc 100%);
    color: #ffffff;
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.home-v4-support__primary-icon {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex: 0 0 68px;
}

.home-v4-support__primary-title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.home-v4-support__primary-text {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1.8;
}

.home-v4-support__primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: #ffffff;
    color: #1457d8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

    .home-v4-support__primary-link span {
        margin-left: 8px;
    }

.home-v4-support__secondary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.home-v4-support__item {
    padding: 28px 22px;
    border-left: 1px solid #edf1f8;
    text-align: center;
}

.home-v4-support__item-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #edf3ff;
    color: #2461de;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.home-v4-support__item-title {
    margin: 0 0 8px;
    color: #2256c9;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.home-v4-support__item-text {
    margin: 0;
    color: #69758d;
    font-size: 14px;
    line-height: 1.7;
}

.home-v4-section {
    margin-top: 18px;
}

.home-v4-section__head {
    text-align: center;
    margin-bottom: 16px;
}

.home-v4-section__title {
    margin: 0;
    color: #273552;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.home-v4-section__line {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #215fe1;
    margin: 10px auto 0;
}

.home-v4-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-v4-highlight {
    border-radius: 18px;
    border: 1px solid #e4eaf4;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    padding: 22px 22px 18px;
}

.home-v4-highlight__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.home-v4-highlight__icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: 0 0 58px;
}

.home-v4-highlight--blue .home-v4-highlight__icon {
    background: #1457d8;
    color: #ffffff;
}

.home-v4-highlight--green .home-v4-highlight__icon {
    background: #2ca34e;
    color: #ffffff;
}

.home-v4-highlight--orange .home-v4-highlight__icon {
    background: #f28e1b;
    color: #ffffff;
}

.home-v4-highlight__title {
    margin: 0;
    color: #273552;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.home-v4-highlight__text {
    margin: 0;
    color: #69758d;
    font-size: 14px;
    line-height: 1.8;
}

.home-v4-testimonials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-v4-testimonial {
    border-radius: 18px;
    border: 1px solid #e4eaf4;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    padding: 18px 18px 16px;
}

.home-v4-testimonial__person {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.home-v4-testimonial__avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef2f8 0%, #dde5f1 100%);
    color: #5b6984;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex: 0 0 54px;
    border: 1px solid #d8e1ee;
}

.home-v4-testimonial__name {
    display: block;
    color: #263452;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.home-v4-testimonial__role,
.home-v4-testimonial__company {
    display: block;
    color: #69758d;
    font-size: 13px;
    line-height: 1.45;
}

.home-v4-testimonial__stars {
    color: #f4a11a;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.home-v4-testimonial__quote {
    margin: 0;
    color: #5f6b84;
    font-size: 14px;
    line-height: 1.8;
}

.home-v4-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.home-v4-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #c9d2e2;
}

    .home-v4-testimonials__dot.is-active {
        background: #215fe1;
    }

@media (max-width: 1260px) {
    .home-v4-hero__grid

{
    grid-template-columns: 1fr;
}

.home-v4-devices {
    min-height: 420px;
}

.home-v4-laptop {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 760px;
}

.home-v4-phone {
    right: 24px;
    top: 56px;
}

.home-v4-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-v4-support {
    grid-template-columns: 1fr;
}

.home-v4-support__secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-v4-support__item:nth-child(3) {
    border-left: 0;
}

.home-v4-highlight-grid,
.home-v4-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

}

@media (max-width: 820px) {
    .home-v4-shell

{
    padding: 24px 18px 18px;
}

.home-v4-title {
    font-size: 30px;
}

.home-v4-text {
    font-size: 15px;
}

.home-v4-actions {
    flex-direction: column;
}

.home-v4-btn,
.home-v4-btn--ghost {
    width: 100%;
}

.home-v4-stats {
    grid-template-columns: 1fr;
    gap: 14px;
}

.home-v4-device-icon {
    display: none;
}

.home-v4-phone {
    width: 136px;
    right: 8px;
    top: 42px;
}

.home-v4-cards,
.home-v4-highlight-grid,
.home-v4-testimonials,
.home-v4-support__secondary {
    grid-template-columns: 1fr;
}

.home-v4-support__item {
    border-left: 0;
    border-top: 1px solid #edf1f8;
}

}

:root {
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-text-soft: #475569;
    --color-text-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-border-soft: #d1d5db;
    --color-dark: #111827;
    --color-dark-2: #1f2937;
    --color-primary-soft: #eef2ff;
    --color-primary-text: #3730a3;
    --color-cyan-soft: #ecfeff;
    --color-cyan-text: #155e75;
    --color-amber-soft: #fef3c7;
    --color-amber-text: #92400e;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    --radius-lg: 18px;
    --radius-md: 12px;
    --container: 1140px;
}

/* ---------- Reset & Base ---------- */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: var(--color-bg);
    line-height: 1.6;
    min-width: 320px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-shell {
    background: var(--color-bg);
}

.section {
    padding: 52px 0;
}

.section--tight {
    padding: 24px 0;
}

.section-hero {
    padding: 52px 0 24px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-hero--cyan {
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-hero--amber {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ---------- Typography / Eyebrow ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
}

.eyebrow--primary {
    background: var(--color-primary-soft);
    color: var(--color-primary-text);
}

.eyebrow--cyan {
    background: var(--color-cyan-soft);
    color: var(--color-cyan-text);
}

.eyebrow--amber {
    background: var(--color-amber-soft);
    color: var(--color-amber-text);
}

.page-title {
   margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.page-text {
    margin: 0;
    max-width: 780px;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.page-head {
    margin-bottom: 24px;
}

/* ---------- Grids ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sidebar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: start;
}

/* ---------- Cards ---------- */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .card h2,
    .card h3 {
        margin: 0 0 12px;
        color: var(--color-text);
        line-height: 1.3;
    }

    .card p {
        margin: 0;
        color: var(--color-text-muted);
        line-height: 1.8;
    }

.content-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

    .content-card h2 {
        margin: 0 0 14px;
        font-size: 26px;
        line-height: 1.3;
        color: var(--color-text);
    }

.content-body {
    color: #374151;
    line-height: 1.85;
    white-space: pre-wrap;
}

/* ---------- Chips ---------- */
.chip-row {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
}

/* ---------- Actions & Buttons ---------- */
.actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.card > .actions:last-child {
    margin-top: auto !important;
    padding-top: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-dark);
    background: var(--color-dark);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: .15s ease;
    white-space: nowrap;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-1px);
        opacity: .96;
    }

.btn--secondary {
    background: #ffffff;
    color: var(--color-dark);
    border-color: var(--color-border-soft);
}

/* ---------- Lists ---------- */
.list-clean {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

    .list-clean li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        color: var(--color-text-soft);
        line-height: 1.65;
    }

        .list-clean li::before {
            content: "•";
            color: #f59e0b;
            font-weight: 700;
        }

/* ---------- Boxes ---------- */
.note-box {
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    color: var(--color-text-soft);
    line-height: 1.75;
}

.empty-box {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    color: var(--color-text-soft);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.success-box {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.success-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
}

.success-title {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.success-text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.85;
    max-width: 760px;
}

.success-info {
    margin-top: 22px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
}

    .success-info strong {
        color: var(--color-text);
    }

    .success-info span {
        color: var(--color-text-soft);
        line-height: 1.7;
    }

/* ---------- Forms ---------- */
.form-shell {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field {
    display: grid;
    gap: 6px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 700;
    color: var(--color-text);
    font-size: 14px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    background: #ffffff;
    font-size: 14px;
    color: var(--color-text);
    box-sizing: border-box;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        outline: none;
        border-color: var(--color-dark);
        box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
    }

.field-error {
    margin: 0;
    color: #b91c1c;
    font-size: 13px;
    line-height: 1.5;
}

.field-note {
    margin-top: 18px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.75;
}

    .field-note a {
        color: var(--color-dark);
        font-weight: 600;
    }

/* ---------- Site Header (eski) ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    white-space: nowrap;
    min-height: 44px;
}

.site-brand__logo {
    display: block;
    width: 220px;
    height: 44px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.site-brand__text {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .site-nav a {
        color: #374151;
        font-weight: 600;
        font-size: 14px;
        position: relative;
        white-space: nowrap;
    }

        .site-nav a:hover {
            color: #111827;
        }

        .site-nav a.is-active {
            color: #111827;
        }

            .site-nav a.is-active::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: -10px;
                height: 2px;
                background: #f59e0b;
            }

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

    .site-cta:hover {
        background: #000;
    }

    .site-cta.is-active {
        background: #000000;
    }

.site-main {
    flex: 1 0 auto;
}

/* ---------- Site Footer ---------- */
.site-footer {
    margin-top: 40px;
    background: #111827;
    color: #e5e7eb;
    flex-shrink: 0;
}

.site-footer__inner {
    padding-top: 36px;
    padding-bottom: 28px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 12px;
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.site-footer__brand-logo {
    display: block;
    width: 220px;
    height: 48px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.site-footer__brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

    .footer-links a {
        color: #cbd5e1;
    }

        .footer-links a:hover {
            color: #ffffff;
        }

.site-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #94a3b8;
}

/* ---------- NM Header ---------- */
.nm-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nm-header__bar {
    background: #ffffff;
}

.nm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.nm-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nm-brand__logo {
    display: block;
    max-height: 48px;
    width: auto;
}

.nm-brand__text {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.nm-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    flex-shrink: 0;
}

    .nm-header__toggle:hover {
        background: #f9fafb;
    }

.nm-header__toggle-icon {
    font-size: 22px;
    line-height: 1;
}

/* ---------- NM Nav ---------- */
.nm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nm-nav__scroll {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.nm-nav__link,
.nm-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

    .nm-nav__link:hover,
    .nm-nav__trigger:hover {
        color: #111827;
    }

    .nm-nav__link.is-active,
    .nm-nav__trigger.is-active {
        color: #111827;
    }

        .nm-nav__link.is-active::after,
        .nm-nav__trigger.is-active::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 2px;
            background: #f59e0b;
        }

.nm-nav__item {
    position: relative;
}

    /* 2. CSS'den: hover bridge için pseudo-element */
    .nm-nav__item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 12px;
    }

.nm-nav__caret {
    font-size: 11px;
    line-height: 1;
    transition: transform 0.18s ease;
}

.nm-nav__item:hover .nm-nav__caret,
.nm-nav__item:focus-within .nm-nav__caret,
.nm-nav__item.is-open .nm-nav__caret {
    transform: rotate(180deg);
}

.nm-nav__panel {
    display: none;
}

.nm-nav__item:hover .nm-nav__panel,
.nm-nav__item:focus-within .nm-nav__panel {
    display: block;
}

.nm-nav__panel-head {
    margin-bottom: 14px;
}

.nm-nav__panel-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.nm-nav__panel-text {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

/* 2. CSS öncelikli: top calc(100% + 8px) */
.nm-nav__panel--mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(860px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    z-index: 50;
}

.nm-nav__panel--small {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    z-index: 50;
}

.nm-nav__mega-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: start;
}

.nm-nav__feature {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
}

.nm-nav__feature-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.nm-nav__feature-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.nm-nav__feature-text {
    margin: 0;
    color: rgba(255,255,255,.86);
    line-height: 1.7;
    font-size: 14px;
}

.nm-nav__feature-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.nm-nav__feature-btn,
.nm-nav__feature-btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: .15s ease;
}

.nm-nav__feature-btn {
    background: #ffffff;
    color: #111827;
    border: 1px solid #ffffff;
}

.nm-nav__feature-btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.24);
}

.nm-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.nm-nav__links--single {
    grid-template-columns: 1fr;
}

.nm-nav__panel-link {
    display: block;
    min-width: 0;
    height: 100%;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
    transition: .15s ease;
}

    .nm-nav__panel-link:hover {
        border-color: #d1d5db;
        background: #f9fafb;
        transform: translateY(-1px);
    }

    .nm-nav__panel-link.is-active {
        border-color: #f59e0b;
        background: #fff7ed;
    }

.nm-nav__panel-link--all {
    grid-column: 1 / -1;
}

.nm-nav__panel-link strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.nm-nav__panel-link span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* ---------- NM Header CTA ---------- */
.nm-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: .15s ease;
}

    .nm-header__cta:hover {
        background: #000000;
    }

    .nm-header__cta.is-active {
        background: #000000;
    }

/* ---------- NM Promo ---------- */
.nm-header__promo {
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
}

/* 2. CSS öncelikli: flex + overflow-x scroll (her ekranda) */
.nm-promo {
    display: flex;
    gap: 5px;
    padding: 12px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

    .nm-promo::-webkit-scrollbar {
        display: none;
    }

.nm-promo__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    /* min-width: 246px; */
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 14px 2px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fafafa;
    text-decoration: none;
    transition: .15s ease;
}


    .nm-promo__item:hover {
        background: #ffffff;
        border-color: #d1d5db;
    }

.nm-promo__meta strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
}

.nm-promo__meta span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.nm-promo__icon {
    flex-shrink: 0;
    color: #111827;
    font-size: 13px;
    line-height: 1;
}

/* ---------- Mobile CTA ---------- */
.nm-nav__mobile-cta {
    display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {

    /* Genel grid'ler */
    .grid-2,
    .grid-3,
    .sidebar-layout,
    .hero-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

/*   .page-title {
        font-size: 36px;
    }

    /* Site header */
    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .site-nav {
        width: 100%;
        gap: 14px;
    }

    /* Footer */
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    /* NM Header */
    .nm-header {
        position: sticky;
        top: 0;
    }

    .nm-header__inner {
        min-height: 72px;
    }

    .nm-header__toggle {
        display: inline-flex;
    }

    .nm-header__cta {
        display: none;
    }

    /* NM Nav — mobile drawer */
    .nm-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        background: rgba(15, 23, 42, 0.28);
        padding: 0;
    }

        .nm-nav.is-open {
            display: flex;
        }

    .nm-nav__scroll {
        width: min(420px, 100%);
        height: 100%;
        overflow-y: auto;
        background: #ffffff;
        padding: 18px 16px 24px;
        display: grid;
        gap: 8px;
        align-content: start;
        box-shadow: 18px 0 40px rgba(15, 23, 42, 0.10);
    }

    .nm-nav__link,
    .nm-nav__trigger {
        min-height: 48px;
        width: 100%;
        justify-content: space-between;
        font-size: 16px;
        padding: 0 10px;
        border-radius: 12px;
    }

        .nm-nav__link.is-active::after,
        .nm-nav__trigger.is-active::after {
            display: none;
        }

    .nm-nav__item {
        width: 100%;
    }

        .nm-nav__panel,
        .nm-nav__item:hover .nm-nav__panel,
        .nm-nav__item:focus-within .nm-nav__panel {
            display: none;
        }

        .nm-nav__item.is-open .nm-nav__panel {
            display: block;
        }

    .nm-nav__panel--mega,
    .nm-nav__panel--small {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 8px;
        padding: 14px;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    }

    .nm-nav__mega-grid {
        grid-template-columns: 1fr;
    }

    .nm-nav__links {
        grid-template-columns: 1fr;
    }

    .nm-nav__panel-link--all {
        grid-column: auto;
    }

    .nm-nav__mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 18px;
        border-radius: 12px;
        background: #111827;
        color: #ffffff;
        font-weight: 700;
        text-decoration: none;
        margin-top: 8px;
    }

    .nm-promo__item {
        min-width: 230px;
    }
}

@media (max-width: 640px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section {
        padding: 40px 0;
    }

    .section--tight {
        padding: 18px 0;
    }

    .section-hero {
        padding: 42px 0 18px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .card,
    .content-card,
    .success-box,
    .form-shell {
        padding: 18px;
        border-radius: 16px;
    }

    .success-title {
        font-size: 30px;
    }

    .success-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Site header */
    .site-header__inner {
        min-height: auto;
        gap: 14px;
    }

    .site-brand__text {
        font-size: 20px;
    }

    .site-brand__logo {
        width: 180px;
        height: 36px;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .site-nav a {
            font-size: 15px;
        }

            .site-nav a.is-active::after {
                bottom: -4px;
            }

    .site-cta {
        width: 100%;
    }

    /* Footer */
    .site-footer__inner {
        padding-top: 28px;
        padding-bottom: 22px;
    }

    .site-footer__brand-logo {
        width: 180px;
        height: 40px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }

    /* NM Header */
    .nm-header__inner {
        gap: 12px;
        min-height: 68px;
    }
    
    .nm-brand__logo {
        max-height: 42px;
    }

    .nm-brand__text {
        font-size: 20px;
    }

    .nm-nav {
        top: 69px;
    }

    .nm-promo__item {
        min-width: 210px;
    }
}




.home-v4-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.home-v4-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.home-v4-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .home-v4-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }

/* Renk stilleri (örnek) */
.home-v4-card--blue {
    border-top: 4px solid #3b82f6;
}

.home-v4-card--green {
    border-top: 4px solid #10b981;
}

.home-v4-card--orange {
    border-top: 4px solid #f97316;
}

.home-v4-card--purple {
    border-top: 4px solid #a855f7;
}

.home-v4-card--teal {
    border-top: 4px solid #14b8a6;
}

.home-v4-card--red {
    border-top: 4px solid #ef4444;
}

.home-v4-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.home-v4-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #1e293b;
}

.home-v4-card__text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
/*    margin-bottom: 1.25rem;
*/}

.home-v4-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

    .home-v4-card__link span {
        transition: transform 0.2s;
    }

    .home-v4-card__link:hover span {
        transform: translateX(4px);
    }

@media (max-width: 768px) {
    .home-v4-card {
        flex: 1 1 100%;
    }
}
