/* DoublePOS — Kurumsal ana sayfa (yönetici panelinden tamamen bağımsız) */

:root {
    --home-font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --home-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    --home-nav-height: 72px;
    --home-slide-width: 1920;
    --home-slide-height: 720;
    --home-navy: #070f1c;
    --home-navy-2: #0c1829;
    --home-navy-3: #111f35;
    --home-blue: #2563eb;
    --home-blue-dark: #1d4ed8;
    --home-blue-light: #60a5fa;
    --home-blue-soft: rgba(37, 99, 235, 0.12);
    --home-blue-border: rgba(59, 130, 246, 0.22);
    --home-text: #e2e8f0;
    --home-text-muted: #94a3b8;
    --home-text-bright: #f8fafc;
    --home-card: rgba(15, 28, 50, 0.72);
    --home-card-border: rgba(148, 163, 184, 0.14);
    --home-radius: 16px;
    --home-radius-lg: 22px;
    --home-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    --home-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}


html {
    scroll-behavior: smooth;
}

.home-login-body {
    margin: 0;
    min-height: 100vh;
    background: var(--home-navy);
    color: var(--home-text);
    font-family: var(--home-font);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.home-login-body .app-logo,
.home-login-body .app-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.home-login-body .app-logo-img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Arka plan */
.home-mesh-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 15% 20%, rgba(37, 99, 235, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 85% 75%, rgba(30, 64, 175, 0.14), transparent 50%),
        linear-gradient(180deg, var(--home-navy) 0%, var(--home-navy-2) 45%, #0a1424 100%);
    pointer-events: none;
}

.home-mesh-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Navigasyon */
.home-topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(7, 15, 28, 0.78);
    border-bottom: 1px solid var(--home-blue-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-topnav-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--home-nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-topnav-logo .app-logo-img {
    max-height: 44px;
    max-width: 180px;
}

.home-topnav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--home-text-muted);
    text-decoration: none;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.home-nav-link:hover,
.home-nav-link:active,
.home-nav-link.home-nav-active {
    color: var(--home-text-bright);
    background: rgba(255, 255, 255, 0.06);
}

.home-nav-link:active {
    transform: scale(0.97);
}

.home-nav-link.home-nav-cta:hover,
.home-nav-link.home-nav-cta:active,
.home-nav-link.home-nav-cta:focus-visible {
    background: var(--home-gradient);
}

.home-nav-link.home-nav-cta {
    position: relative;
    overflow: hidden;
    margin-left: 8px;
    color: #eff6ff;
    background: var(--home-gradient);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    animation: home-cta-pulse 2.4s ease-in-out infinite;
}

.home-nav-link.home-nav-cta:hover,
.home-nav-link.home-nav-cta:active {
    color: #fff;
    filter: brightness(1.1);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.5);
}

.home-nav-link.home-nav-cta:active {
    transform: translateY(0) scale(0.98);
}

.home-nav-cta-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 65%
    );
    transform: translateX(-120%);
    animation: home-cta-shine 3.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes home-cta-pulse {
    0%, 100% {
        box-shadow:
            0 4px 14px rgba(37, 99, 235, 0.35),
            0 0 0 0 rgba(59, 130, 246, 0.45);
    }
    50% {
        box-shadow:
            0 6px 22px rgba(37, 99, 235, 0.55),
            0 0 0 10px rgba(59, 130, 246, 0);
    }
}

@keyframes home-cta-shine {
    0%, 72% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

.home-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--home-blue-border);
    border-radius: 10px;
    background: var(--home-blue-soft);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-nav-toggle:hover,
.home-nav-toggle:active {
    background: rgba(37, 99, 235, 0.28);
    border-color: rgba(147, 197, 253, 0.55);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transform: scale(1.04);
}

.home-nav-toggle:active {
    transform: scale(0.96);
}

.home-nav-toggle span {
    display: block;
    height: 2px;
    margin: 0 10px;
    background: var(--home-blue-light);
    border-radius: 2px;
}

/* Hero / slayt */
.home-landing {
    position: relative;
    z-index: 2;
}

/* Hero / slayt — standart 1920×720 */
.home-hero {
    position: relative;
    width: 100%;
    padding:
        calc(var(--home-nav-height) + env(safe-area-inset-top, 0px) + 16px)
        16px
        0;
    margin: 0;
}

.home-hero-stage {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: var(--home-slide-width) / var(--home-slide-height);
    overflow: hidden;
    background: var(--home-navy);
    border-radius: var(--home-radius-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.home-hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    z-index: 0;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-hero-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
}

.home-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(7, 15, 28, 0.55);
    color: #f8fafc;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-hero-arrow:hover,
.home-hero-arrow:active {
    background: rgba(37, 99, 235, 0.75);
    border-color: rgba(147, 197, 253, 0.45);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.home-hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.home-hero-arrow--prev {
    left: 14px;
}

.home-hero-arrow--next {
    right: 14px;
}

.home-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(7, 15, 28, 0.5);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.home-hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.home-hero-dot.is-active {
    background: #60a5fa;
    transform: scale(1.15);
}

.home-hero-dot:hover,
.home-hero-dot:active {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.25);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.25);
}

@media (max-width: 768px) {
    .home-hero {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: calc(var(--home-nav-height) + env(safe-area-inset-top, 0px) + 10px);
    }

    .home-hero-stage {
        border-radius: 14px;
    }

    .home-hero-banner {
        object-position: 36% center;
    }

    .home-hero-arrow {
        width: 36px;
        height: 36px;
    }

    .home-hero-arrow--prev {
        left: 8px;
    }

    .home-hero-arrow--next {
        right: 8px;
    }

    .home-hero-dots {
        bottom: 10px;
    }

    .home-section--showcase,
    .home-section--showcase-alt {
        padding: 48px 16px 56px;
    }

    .home-section-head--sale {
        margin-bottom: 24px;
    }

    .home-section-title,
    .mkt-seo-title {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
        line-height: 1.18;
        padding: 0 4px;
    }

    .home-sale-copy {
        max-width: 100%;
        gap: 12px;
        text-align: left;
    }

    .home-sale-copy p {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .home-section-lead,
    .mkt-seo-lead {
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0 2px;
    }

    .home-sector-showcase {
        gap: 8px;
        margin-top: 20px;
        max-width: 100%;
    }

    .home-sector-chip {
        min-height: 40px;
        padding: 6px 12px 6px 6px;
        font-size: 0.95rem;
        gap: 7px;
    }

    .home-sector-chip__icon {
        width: 28px;
        height: 28px;
        font-size: 0.68rem;
    }

    .home-showcase {
        border-radius: 14px;
        margin-inline: 0;
    }

    .home-showcase-image {
        width: 100%;
        height: auto;
    }
}

/* Giriş modal */
.home-login-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.home-login-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 20, 0.78);
    backdrop-filter: blur(6px);
}

.home-login-modal-dialog {
    position: relative;
    width: min(100%, 440px);
    max-height: min(92vh, 860px);
    overflow: auto;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.home-login-modal.is-open .home-login-modal-dialog {
    transform: translateY(0) scale(1);
}

.home-login-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--home-card-border);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.92);
    color: #cbd5e1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-login-modal-close:hover,
.home-login-modal-close:active {
    color: #fff;
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--home-blue-border);
    transform: scale(1.06);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.home-login-modal-close:active {
    transform: scale(0.94);
}

.home-login-modal-panel {
    margin: 0;
}

body.home-login-modal-open {
    overflow: hidden;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #bfdbfe;
    background: var(--home-blue-soft);
    border: 1px solid var(--home-blue-border);
}

.home-hero-title {
    margin: 20px 0 16px;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--home-text-bright);
}

.home-hero-lead {
    margin: 0 0 24px;
    max-width: 52ch;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    color: var(--home-text-muted);
}

.home-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.home-hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--home-card-border);
}

.home-hero-pills i {
    color: var(--home-blue-light);
}

.home-hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.home-hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--home-text-bright);
    line-height: 1.1;
}

.home-hero-stat span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--home-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Giriş paneli */
.home-login-panel {
    padding: 28px 28px 32px;
    border-radius: var(--home-radius-lg);
    background: var(--home-card);
    border: 1px solid var(--home-blue-border);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.home-login-panel-head {
    text-align: center;
    margin-bottom: 20px;
}

.home-login-panel-logo {
    max-height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}

.home-login-panel-head p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--home-text-muted);
}

.home-auth-tabs {
    display: flex;
    gap: 6px;
    padding: 4px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--home-card-border);
}

.home-auth-tab {
    flex: 1;
    border: none;
    border-radius: 9px;
    padding: 11px 10px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--home-text-muted);
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.home-auth-tab:hover:not(.is-active),
.home-auth-tab:active:not(.is-active) {
    color: var(--home-text-bright);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.home-auth-tab.is-active {
    color: #eff6ff;
    background: var(--home-gradient);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.home-auth-tab.is-active:hover,
.home-auth-tab.is-active:active {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.home-auth-panel {
    display: none;
    width: 100%;
}

.home-auth-panel.is-active {
    display: flex;
    flex-direction: column;
}

.home-login-form {
    width: 100%;
}

.home-login-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-field {
    width: 100%;
}

.home-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
}

.home-input-wrap {
    position: relative;
}

.home-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--home-blue-light);
    font-size: 0.9rem;
    pointer-events: none;
}

.home-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--home-text-bright);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--home-card-border);
    border-radius: 11px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.home-input::placeholder {
    color: #64748b;
}

.home-input:focus {
    border-color: var(--home-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.home-input-wrap-password .home-input-password {
    padding-right: 44px;
}

.home-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--home-blue-light);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.home-password-toggle:hover,
.home-password-toggle:active {
    background: rgba(37, 99, 235, 0.18);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.home-password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.home-remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    cursor: pointer;
}

.home-remember input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.home-remember-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid var(--home-blue-border);
    background: rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-remember-box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #eff6ff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    margin-top: -2px;
    transition: transform 0.15s;
}

.home-remember input:checked + .home-remember-box {
    background: var(--home-blue);
    border-color: var(--home-blue);
}

.home-remember input:checked + .home-remember-box::after {
    transform: rotate(45deg) scale(1);
}

.home-remember-text {
    font-size: 0.88rem;
    color: #cbd5e1;
}

.home-remember-hint {
    margin: -2px 0 0;
    font-size: 0.76rem;
    line-height: 1.35;
    color: #94a3b8;
    text-align: center;
}

.home-signup-note {
    margin: 0;
    padding: 10px 12px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--home-text-muted);
    text-align: center;
    border-radius: 10px;
    background: var(--home-blue-soft);
    border: 1px solid var(--home-blue-border);
}

.home-submit-wrap {
    margin-top: 18px;
}

.home-submit {
    width: 100%;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 11px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: #eff6ff;
    background: var(--home-gradient);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.32);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-submit:hover,
.home-submit:active {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.home-submit:active {
    transform: translateY(0) scale(0.98);
}

.home-submit.is-loading,
.home-submit:disabled {
    opacity: 0.85;
    cursor: wait;
    transform: none;
    pointer-events: none;
}

.home-submit--signup {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.home-login-alert {
    margin-bottom: 12px !important;
    font-size: 0.85rem;
    border-radius: 10px;
}

.home-login-body .alert-danger {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fecaca;
}

.home-login-body .alert-success {
    background: var(--home-blue-soft);
    border: 1px solid var(--home-blue-border);
    color: #bfdbfe;
}

/* Bölümler */
.home-section {
    position: relative;
    z-index: 2;
    padding: 88px 24px;
    background: var(--home-navy-2);
    border-top: 1px solid var(--home-blue-border);
}

.home-section--showcase {
    background: var(--home-navy);
    padding-top: 64px;
    padding-bottom: 72px;
}

.home-section--showcase-alt {
    background: var(--home-navy-2);
}

.home-section-head--sale {
    margin-bottom: 36px;
}

.home-sale-copy {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    text-align: center;
}

.home-sale-copy p {
    margin: 0;
    font-size: clamp(0.95rem, 2.4vw, 1.08rem);
    line-height: 1.7;
    color: var(--home-text-muted);
}

.home-showcase {
    margin: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    border: 1px solid var(--home-blue-border);
    background: var(--home-navy-3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-showcase-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.home-sector-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 980px;
    margin: 28px auto 0;
}

.home-sector-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    font-family: var(--home-display);
    font-size: clamp(0.95rem, 2.5vw, 1.12rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #f8fafc;
    background:
        linear-gradient(145deg, rgba(37, 99, 235, 0.34) 0%, rgba(15, 28, 50, 0.92) 55%, rgba(12, 24, 41, 0.98) 100%);
    border: 1px solid rgba(147, 197, 253, 0.38);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(37, 99, 235, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-sector-chip__icon {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(96, 165, 250, 0.35), rgba(37, 99, 235, 0.18));
    border: 1px solid rgba(147, 197, 253, 0.35);
    color: #bfdbfe;
    font-style: normal;
    font-size: 0.72rem;
}

.home-sector-chip__label {
    padding-right: 4px;
    white-space: nowrap;
}

.home-sector-chip:nth-child(3n) {
    background:
        linear-gradient(145deg, rgba(14, 165, 233, 0.28) 0%, rgba(15, 28, 50, 0.94) 58%, rgba(7, 15, 28, 0.98) 100%);
    border-color: rgba(125, 211, 252, 0.36);
}

.home-sector-chip:nth-child(3n + 1) {
    background:
        linear-gradient(145deg, rgba(99, 102, 241, 0.28) 0%, rgba(15, 28, 50, 0.94) 58%, rgba(7, 15, 28, 0.98) 100%);
}

.home-sector-chip:nth-child(3n + 2) {
    background:
        linear-gradient(145deg, rgba(59, 130, 246, 0.32) 0%, rgba(15, 28, 50, 0.94) 58%, rgba(7, 15, 28, 0.98) 100%);
}

.home-sector-chip:hover,
.home-sector-chip:active {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(191, 219, 254, 0.65);
    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-sector-chip:active {
    transform: translateY(-1px) scale(0.98);
}

.home-section--contact {
    background: var(--home-navy);
}

.home-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.home-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.home-section-head--left {
    text-align: left;
}

.home-section-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
    background: var(--home-blue-soft);
    border: 1px solid var(--home-blue-border);
}

.home-section-title,
.mkt-seo-title {
    margin: 0 0 12px;
    font-family: var(--home-display);
    font-size: clamp(2.15rem, 4.2vw, 3.15rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: var(--home-text-bright);
}

.home-section-lead,
.mkt-seo-lead {
    margin: 0 auto;
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--home-text-muted);
}

.home-section-head--left .home-section-lead,
.home-section-head--left .mkt-seo-lead {
    margin-left: 0;
}

/* Özellik kartları */
.home-feature-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.home-feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--home-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--home-card-border);
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.home-feature-card:hover,
.home-feature-card:active {
    border-color: var(--home-blue-border);
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.home-feature-card:active {
    transform: translateY(-1px) scale(0.99);
}

.home-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #bfdbfe;
    background: var(--home-blue-soft);
    border: 1px solid var(--home-blue-border);
}

.home-feature-body h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--home-text-bright);
}

.home-feature-body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--home-text-muted);
}

/* İletişim */
.home-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.home-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 28px 20px;
    border-radius: var(--home-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--home-card-border);
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.home-contact-card:hover,
.home-contact-card:active {
    border-color: var(--home-blue-border);
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
    color: inherit;
}

.home-contact-card:active {
    transform: translateY(-1px) scale(0.98);
}

.home-contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.2rem;
    color: var(--home-blue-light);
    background: var(--home-blue-soft);
}

.home-contact-card strong {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--home-text-muted);
}

.home-contact-card span:last-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-bright);
}

.home-contact-map-block {
    margin-top: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-contact-map-title {
    margin: 0 0 8px;
    font-family: var(--home-display, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(1.45rem, 3.5vw, 1.9rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.2;
    color: var(--home-text-bright);
}

.home-contact-map-address {
    margin: 0 auto 10px;
    max-width: 640px;
    font-size: clamp(0.92rem, 2.2vw, 1.02rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--home-text-bright);
}

.home-contact-map-lead {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: var(--home-text-muted);
}

.home-contact-map {
    position: relative;
    overflow: hidden;
    border-radius: var(--home-radius-lg, 22px);
    border: 1px solid var(--home-card-border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    aspect-ratio: 16 / 9;
    min-height: 240px;
}

.home-contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.home-contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--home-text-bright);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--home-card-border);
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-contact-map-link:hover,
.home-contact-map-link:active {
    border-color: var(--home-blue-border);
    background: var(--home-blue-soft);
    color: var(--home-text-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.home-contact-map-link:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 768px) {
    .home-contact-map-block {
        margin-top: 22px;
    }

    .home-contact-map {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
        min-height: 220px;
    }
}

/* Footer */
.home-footer {
    position: relative;
    z-index: 2;
    padding: 32px 24px;
    border-top: 1px solid var(--home-blue-border);
    background: #050a12;
}

.home-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.home-footer-logo {
    max-height: 36px;
    opacity: 0.9;
}

.home-footer p {
    margin: 0;
    font-size: 0.84rem;
    color: #64748b;
}

/* Mobil */
@media (max-width: 768px) {
    .home-nav-toggle {
        display: flex;
    }

    .home-topnav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 12px;
        background: rgba(7, 15, 28, 0.98);
        border-bottom: 1px solid var(--home-blue-border);
    }

    .home-topnav-menu.is-open {
        display: flex;
    }

    .home-nav-link {
        justify-content: center;
        padding: 12px;
    }

    .home-nav-link.home-nav-cta {
        margin-left: 0;
    }

    .home-section {
        padding: 56px 16px;
    }

    .home-section-inner {
        max-width: 100%;
        width: 100%;
    }

    .home-section-head {
        margin-bottom: 28px;
    }

    .home-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-feature-card {
        padding: 16px;
    }

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

    .home-login-panel {
        padding: 22px 18px 26px;
    }

    .home-input {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-hero-stage {
        border-radius: 12px;
    }

    .home-hero-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .home-section--showcase,
    .home-section--showcase-alt,
    .home-section {
        padding: 40px 12px 48px;
    }

    .home-section-title,
    .mkt-seo-title {
        font-size: clamp(1.7rem, 9vw, 2.1rem);
    }

    .home-sale-copy p {
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .home-sector-showcase {
        gap: 7px;
        justify-content: flex-start;
    }

    .home-sector-chip {
        flex: 0 1 auto;
        max-width: 100%;
        min-height: 38px;
        padding: 5px 10px 5px 5px;
        font-size: 0.88rem;
    }

    .home-sector-chip__label {
        white-space: normal;
        line-height: 1.15;
    }

    .home-sector-chip__icon {
        width: 26px;
        height: 26px;
        font-size: 0.64rem;
    }

    .home-showcase {
        border-radius: 12px;
    }

    .home-hero-stats {
        gap: 20px;
    }

    .home-hero-stat strong {
        font-size: 1.4rem;
    }

    .home-login-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .home-login-modal-dialog {
        max-height: 92vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-nav-link,
    .home-nav-link.home-nav-cta,
    .home-nav-cta-shine,
    .home-nav-toggle,
    .home-hero-arrow,
    .home-hero-dot,
    .home-auth-tab,
    .home-submit,
    .home-password-toggle,
    .home-login-modal-close,
    .home-feature-card,
    .home-contact-card,
    .home-contact-map-link,
    .home-sector-chip,
    .home-login-modal,
    .home-login-modal-dialog,
    .home-hero-slide {
        animation: none;
        transition: none;
    }
}


/* Ana navigasyon — akıcı geçiş ve güçlü aktif durum */
.home-topnav {
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.home-topnav-menu {
    position: relative;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(148, 163, 184, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.home-nav-link:not(.home-nav-cta) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 10px 15px;
    border-radius: 10px;
    transition: color .25s ease, transform .25s ease, background-color .25s ease;
}

.home-nav-link:not(.home-nav-cta)::before {
    content: '';
    position: absolute;
    inset: 4px;
    z-index: -1;
    border: 1px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(46, 196, 182, .07));
    opacity: 0;
    transform: scale(.84);
    transition: opacity .25s ease, transform .32s cubic-bezier(.2,.8,.2,1), border-color .25s ease;
}

.home-nav-link:not(.home-nav-cta)::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa, #2ec4b6);
    box-shadow: 0 0 12px rgba(46, 196, 182, .4);
    transition: left .3s ease, right .3s ease;
}

.home-nav-link:not(.home-nav-cta):hover,
.home-nav-link:not(.home-nav-cta).home-nav-active {
    color: #fff;
    background: transparent;
    transform: translateY(-1px);
}

.home-nav-link:not(.home-nav-cta):hover::before,
.home-nav-link:not(.home-nav-cta).home-nav-active::before {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(96, 165, 250, .12);
}

.home-nav-link:not(.home-nav-cta):hover::after,
.home-nav-link:not(.home-nav-cta).home-nav-active::after {
    left: 18%;
    right: 18%;
}

.home-nav-cta {
    min-height: 42px;
    border-radius: 11px;
    transition: color .2s ease, transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, filter .25s ease;
}

.home-nav-toggle span {
    transform-origin: center;
    transition: transform .28s ease, opacity .2s ease, background .2s ease;
}

.home-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.home-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.home-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .home-topnav-menu {
        display: flex;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        padding: 10px;
        border: 1px solid rgba(96, 165, 250, .18);
        border-radius: 16px;
        background: rgba(7, 15, 28, .97);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(.98);
        transform-origin: top center;
        transition: opacity .24s ease, visibility .24s ease, transform .3s cubic-bezier(.2,.8,.2,1);
    }

    .home-topnav-menu.is-open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .home-topnav-menu.is-open .home-nav-link {
        animation: home-nav-item-in .32s ease both;
    }
    .home-topnav-menu.is-open .home-nav-link:nth-child(2) { animation-delay: .035s; }
    .home-topnav-menu.is-open .home-nav-link:nth-child(3) { animation-delay: .07s; }
    .home-topnav-menu.is-open .home-nav-link:nth-child(4) { animation-delay: .105s; }
    .home-topnav-menu.is-open .home-nav-link:nth-child(5) { animation-delay: .14s; }

    .home-nav-link:not(.home-nav-cta) { width: 100%; justify-content: flex-start; }
    .home-nav-link:not(.home-nav-cta)::after { left: 10px; right: auto; top: 25%; bottom: 25%; width: 2px; height: auto; }
    .home-nav-link:not(.home-nav-cta):hover::after,
    .home-nav-link:not(.home-nav-cta).home-nav-active::after { left: 10px; right: auto; }
}

@keyframes home-nav-item-in {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .home-topnav-menu,
    .home-topnav-menu.is-open .home-nav-link,
    .home-nav-link::before,
    .home-nav-link::after,
    .home-nav-toggle span { animation: none !important; transition: none !important; }
}
/* Üst menü — tam genişlik ve büyük masaüstü ölçüsü */
@media (min-width: 769px) {
    :root { --home-nav-height: 92px; }

    .home-topnav {
        width: 100%;
        background: rgba(7, 15, 28, .9);
        box-shadow: 0 12px 36px rgba(0, 0, 0, .24);
    }

    .home-topnav-inner {
        width: 100%;
        max-width: none;
        height: var(--home-nav-height);
        padding: 0 clamp(24px, 3.4vw, 68px);
        gap: clamp(24px, 4vw, 64px);
    }

    .home-topnav-logo {
        flex: 0 0 auto;
    }

    .home-topnav-logo .app-logo-img {
        max-width: 235px;
        max-height: 58px;
    }

    .home-topnav-menu {
        flex: 1;
        justify-content: flex-end;
        gap: clamp(7px, 1vw, 15px);
        padding: 7px;
        border-radius: 17px;
    }

    .home-nav-link:not(.home-nav-cta) {
        min-height: 48px;
        padding: 12px clamp(15px, 1.4vw, 23px);
        font-size: clamp(.88rem, .95vw, 1rem);
    }

    .home-nav-link.home-nav-cta {
        min-height: 50px;
        margin-left: clamp(5px, 1vw, 14px);
        padding: 12px clamp(20px, 1.8vw, 30px);
        font-size: clamp(.9rem, 1vw, 1.02rem);
        border-radius: 13px;
    }

    .home-hero {
        padding-top: calc(var(--home-nav-height) + env(safe-area-inset-top, 0px) + 18px);
    }
}

@media (min-width: 1600px) {
    .home-topnav-inner { padding-inline: clamp(54px, 5vw, 110px); }
    .home-topnav-logo .app-logo-img { max-width: 260px; max-height: 62px; }
}

/* Üst menü şeffaf yüzey */
.home-topnav {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-topnav-menu {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .home-topnav-menu {
        background: rgba(7, 15, 28, .96);
        border-color: var(--home-blue-border);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
}
/* Demo talep alanı */
.home-nav-demo { color: #bfdbfe; }
.home-nav-demo i { color: #2ec4b6; }
.home-demo-section { overflow: hidden; background: linear-gradient(145deg, #081221, #0c1a2d); }
.home-demo-section::before { content:''; position:absolute; width:520px; height:520px; right:-180px; top:-220px; border-radius:50%; background:radial-gradient(circle,rgba(37,99,235,.18),transparent 68%); pointer-events:none; }
.home-demo-layout { display:grid; grid-template-columns:minmax(0,.86fr) minmax(480px,1.14fr); align-items:center; gap:clamp(38px,6vw,88px); }
.home-demo-copy .home-section-title, .home-demo-copy .home-section-lead { text-align:left; margin-left:0; }
.home-demo-copy .home-section-title { max-width:680px; }
.home-demo-copy .home-section-badge { margin-bottom:18px; }
.home-demo-form { position:relative; padding:clamp(22px,3vw,34px); border:1px solid rgba(96,165,250,.2); border-radius:24px; background:linear-gradient(150deg,rgba(17,31,53,.96),rgba(8,18,33,.98)); box-shadow:0 28px 70px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.05); }
.home-demo-form-head { display:flex; align-items:center; gap:13px; margin-bottom:22px; }
.home-demo-form-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:14px; color:#99f6e4; background:linear-gradient(145deg,rgba(46,196,182,.2),rgba(37,99,235,.15)); border:1px solid rgba(46,196,182,.2); }
.home-demo-form-head strong,.home-demo-form-head small { display:block; }
.home-demo-form-head strong { color:#fff; font-size:1rem; }
.home-demo-form-head small { margin-top:3px; color:#8290a5; font-size:.74rem; }
.home-demo-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.home-demo-grid label { display:grid; gap:6px; }
.home-demo-grid label>span { color:#cbd5e1; font-size:.72rem; font-weight:700; }
.home-demo-grid input,.home-demo-grid textarea { width:100%; min-width:0; padding:12px 13px; border:1px solid rgba(148,163,184,.17); border-radius:11px; outline:0; color:#f8fafc; background:rgba(3,9,18,.6); font:inherit; font-size:.84rem; transition:border-color .2s,box-shadow .2s,background .2s; }
.home-demo-grid textarea { min-height:88px; resize:vertical; }
.home-demo-grid input::placeholder,.home-demo-grid textarea::placeholder { color:#59677a; }
.home-demo-grid input:focus,.home-demo-grid textarea:focus { border-color:rgba(46,196,182,.55); background:rgba(3,9,18,.82); box-shadow:0 0 0 4px rgba(46,196,182,.08); }
.home-demo-grid-wide { grid-column:1/-1; }
.home-demo-honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; opacity:0!important; }
.home-demo-submit { position:relative; isolation:isolate; overflow:hidden; display:flex; align-items:center; justify-content:center; gap:10px; width:100%; min-height:51px; margin-top:17px; padding:12px 20px; border:0; border-radius:12px; color:#fff; background:linear-gradient(135deg,#2563eb,#1d4ed8 55%,#0f766e); box-shadow:0 12px 30px rgba(37,99,235,.3); font:inherit; font-size:.9rem; font-weight:800; cursor:pointer; transition:transform .22s,filter .22s,box-shadow .22s; }
.home-demo-submit:hover { transform:translateY(-3px); filter:brightness(1.1); box-shadow:0 18px 38px rgba(37,99,235,.42),0 0 26px rgba(46,196,182,.12); }
.home-demo-submit:active { transform:translateY(0) scale(.985); }
.home-demo-submit-shine { position:absolute; inset:0; z-index:-1; background:linear-gradient(105deg,transparent 34%,rgba(255,255,255,.28) 50%,transparent 66%); transform:translateX(-120%); animation:home-demo-shine 3.2s ease-in-out infinite; }
.home-demo-privacy { margin:12px 0 0; color:#64748b; font-size:.68rem; text-align:center; }
.home-demo-privacy i { margin-right:5px; color:#2ec4b6; }
.home-demo-alert { display:flex; align-items:center; gap:8px; margin-bottom:16px; padding:11px 12px; border-radius:10px; font-size:.78rem; }
.home-demo-alert.is-success { color:#bbf7d0; border:1px solid rgba(34,197,94,.25); background:rgba(34,197,94,.1); }
.home-demo-alert.is-error { color:#fecaca; border:1px solid rgba(239,68,68,.25); background:rgba(239,68,68,.1); }
@keyframes home-demo-shine { 0%,68%{transform:translateX(-120%)} 100%{transform:translateX(120%)} }
@media(max-width:980px){.home-demo-layout{grid-template-columns:1fr;gap:30px}.home-demo-copy{text-align:center}.home-demo-copy .home-section-title,.home-demo-copy .home-section-lead{text-align:center;margin-inline:auto}}
@media(max-width:640px){.home-demo-layout{display:block}.home-demo-copy{margin-bottom:28px}.home-demo-form{padding:20px 16px;border-radius:18px}.home-demo-grid{grid-template-columns:1fr}.home-demo-grid-wide{grid-column:auto}.home-nav-demo i{display:inline-block}}
@media(prefers-reduced-motion:reduce){.home-demo-submit-shine{animation:none}.home-demo-submit{transition:none}}

/* Üst menü demo çağrısı — hareketli ve belirgin */
.home-topnav-menu .home-nav-demo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 44px;
    padding-inline: 18px;
    border: 1px solid rgba(45, 212, 191, .48);
    border-radius: 12px;
    color: #ecfeff;
    background: linear-gradient(135deg, rgba(13, 148, 136, .92), rgba(37, 99, 235, .9));
    box-shadow: 0 8px 24px rgba(37, 99, 235, .24), 0 0 0 0 rgba(45, 212, 191, .34);
    font-weight: 800;
    letter-spacing: .01em;
    animation: home-demo-nav-pulse 2.2s ease-in-out infinite;
}
.home-topnav-menu .home-nav-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 0;
    border-radius: inherit;
    opacity: 1;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.3) 48%, transparent 66%);
    transform: translateX(-125%);
    animation: home-demo-nav-shine 3s ease-in-out infinite;
}
.home-topnav-menu .home-nav-demo::after { display: none; }
.home-topnav-menu .home-nav-demo i { color: #ccfbf1; filter: drop-shadow(0 0 6px rgba(153,246,228,.45)); }
.home-topnav-menu .home-nav-demo:hover,
.home-topnav-menu .home-nav-demo.home-nav-active {
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #2563eb);
    border-color: rgba(153,246,228,.72);
    box-shadow: 0 13px 32px rgba(37,99,235,.36), 0 0 24px rgba(45,212,191,.17);
    transform: translateY(-3px) scale(1.025);
}
@keyframes home-demo-nav-pulse {
    0%,100% { box-shadow:0 8px 24px rgba(37,99,235,.24),0 0 0 0 rgba(45,212,191,.28); }
    50% { box-shadow:0 11px 29px rgba(37,99,235,.34),0 0 0 7px rgba(45,212,191,0); }
}
@keyframes home-demo-nav-shine {
    0%,64% { transform:translateX(-125%); }
    100% { transform:translateX(125%); }
}
@media(max-width:768px){.home-topnav-menu .home-nav-demo{width:100%;justify-content:center;margin-top:4px}}
@media(prefers-reduced-motion:reduce){.home-topnav-menu .home-nav-demo,.home-topnav-menu .home-nav-demo::before{animation:none!important}}
