:root {
    --bg: #f4f5f7;
    --surface: #ffffff;
    --surface-2: #ffffff;
    --card-border: #e6e8ec;
    --text: #111317;
    --muted: #5f6673;
    --accent: #14171d;
    --accent-soft: #ff5a2f;
    --danger: #ff6b6b;
    --ok: #3ddc97;
    --input-bg: #ffffff;
    --input-border: #d8dde5;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eceff4;
    margin: 0;
    padding: 0;
}
.site-header .site-header__inner {
    padding-top: 8px;
    padding-bottom: 8px;
}
.top-nav {
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 16px 0 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    width: 100%;
}
.top-nav .brand {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1.35rem;
    line-height: 1;
}
.top-nav .brand-lockup {
    display: inline-flex;
    align-items: baseline;
}
.top-nav .brand-for,
.top-nav .brand-x {
    color: #0a0a0a;
}
.top-nav .brand-letter-u {
    position: relative;
    display: inline-block;
    color: #0a0a0a;
}
.top-nav .brand-letter-u::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid var(--accent-soft);
}
.top-nav .nav-center {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 32px;
    flex: 1 1 auto;
    min-width: 0;
}
.top-nav .nav-center a {
    border: none;
    border-radius: 0;
    padding: 6px 0;
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s ease;
}
.top-nav .nav-center a:hover {
    color: #111827;
}
.top-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #111318;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.1s ease;
}
.top-nav .nav-cta:hover {
    background: #2d3139;
    color: #ffffff !important;
}
@media (max-width: 720px) {
    .top-nav .nav-center {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 16px 24px;
    }
    .top-nav .nav-cta {
        margin-left: auto;
    }
}
.hero {
    margin-bottom: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid #eceff4;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
}
.hero--landing {
    position: relative;
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 28px 16px 40px;
    margin: 0 -20px 24px;
    max-width: none;
}
@media (min-width: 1160px) {
    .hero--landing {
        margin-left: calc(50% - 50vw + 20px);
        margin-right: calc(50% - 50vw + 20px);
        padding-left: max(20px, calc(50vw - 560px));
        padding-right: max(20px, calc(50vw - 560px));
    }
}
.hero-kicker {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    margin: 0 auto 20px;
    padding: 8px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fafafa;
    font-size: 13px;
    line-height: 1.45;
    color: #6b7280;
    max-width: 100%;
}
.hero-kicker__strong {
    font-weight: 600;
    color: #111318;
}
.hero-kicker__dot {
    color: #9ca3af;
    font-weight: 400;
}
.hero-kicker__muted {
    color: #6b7280;
    font-weight: 400;
}
.hero-heading {
    margin: 0 auto 16px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    max-width: 920px;
}
.hero-sub {
    margin: 0 auto 28px;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 640px;
}
.hero-cta-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}
.hero-cta-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    width: min(420px, 90vw);
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 50%, rgba(255, 90, 47, 0.14) 0%, transparent 50%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}
.hero-cta-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.hero-btn--primary {
    background: #111318;
    color: #ffffff;
    border: 1px solid #111318;
}
.hero-btn--primary:hover {
    background: #2d3139;
    border-color: #2d3139;
    color: #ffffff;
}
.hero-btn__icon {
    flex-shrink: 0;
    opacity: 0.95;
}
.hero-btn--ghost {
    background: #ffffff;
    color: #111318;
    border: 1px solid #e5e7eb;
}
.hero-btn--ghost:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}
.hero-micro {
    margin: 0 auto 24px;
    font-size: 13px;
    color: #9ca3af;
    max-width: 520px;
    line-height: 1.5;
}
.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    font-size: 13px;
    color: #4b5563;
}
.hero-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e11d48;
    flex-shrink: 0;
}
.hero-meta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.pill {
    border: 1px solid #eceff4;
    background: #ffffff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    color: #5f6673;
}
.card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(16, 20, 27, 0.06);
}
h1 {
    margin: 0 0 8px;
    font-size: 28px;
}
p.lead {
    margin: 0 0 24px;
    color: var(--muted);
}
.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 12px;
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
input,
textarea {
    width: 100%;
    border: 1px solid var(--input-border);
    border-radius: 10px;
    padding: 12px;
    background: var(--input-bg);
    color: #14171d;
    outline: none;
}
input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
}
.hint {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
}
button {
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    cursor: pointer;
    margin-top: 8px;
}
button:hover {
    opacity: 0.92;
}
button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
}
.alert-danger {
    border: 1px solid rgba(255, 107, 107, 0.6);
    background: rgba(255, 107, 107, 0.12);
    color: #ffd1d1;
}
.alert-success {
    border: 1px solid rgba(61, 220, 151, 0.6);
    background: rgba(61, 220, 151, 0.12);
    color: #0d3d2a;
}
.alert-success a {
    color: #0b5c3d;
    font-weight: 600;
}
.alert-success a:hover {
    color: #063d28;
    text-decoration: underline;
}
.alert-success code {
    color: #082f22;
    background: rgba(255, 255, 255, 0.65);
    padding: 1px 5px;
    border-radius: 4px;
}
.alert-success strong {
    color: #062a1e;
}
.alert-warning {
    border: 1px solid rgba(255, 196, 0, 0.55);
    background: rgba(255, 196, 0, 0.12);
    color: #ffeab0;
}
.result-list {
    margin: 0;
    padding-left: 16px;
}
.footer-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
}
.section-title {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: 0.2px;
}
.recent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.recent-item {
    border: 1px solid #eceff4;
    border-radius: 10px;
    padding: 12px;
    background: #ffffff;
}
.recent-item .meta {
    color: #6a7280;
    font-size: 12px;
    margin-top: 5px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.stat-box {
    border: 1px solid #eceff4;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}
.stat-label {
    font-size: 12px;
    color: #6a7280;
    margin-bottom: 4px;
}
.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #111317;
}
.table-wrap {
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.data-table th,
.data-table td {
    text-align: left;
    border-bottom: 1px solid #eceff4;
    padding: 10px;
    font-size: 14px;
}
.services {
    margin-bottom: 18px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-box {
    border: 1px solid #eceff4;
    border-radius: 14px;
    padding: 16px;
    background: #ffffff;
    position: relative;
}
.service-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 2px;
    background: var(--accent-soft);
}
.service-box h3 {
    margin: 0 0 8px 8px;
    font-size: 16px;
}
.service-box p {
    margin: 0 0 0 8px;
    color: #5f6673;
    font-size: 13px;
}

/* Neden Forux? — Heap tarzı avantaj bandı */
.why-forux {
    margin: 28px calc(50% - 50vw) 32px;
    width: 100vw;
    max-width: 100vw;
    background: #eef1f5;
    padding: 48px 0 52px;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}
.why-forux__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.why-forux__kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f15a24;
    text-transform: none;
}
.why-forux__kicker-line {
    width: 3px;
    height: 18px;
    border-radius: 2px;
    background: #f15a24;
    flex-shrink: 0;
}
.why-forux__title {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1a1d24;
    letter-spacing: -0.02em;
    max-width: 920px;
}
.why-forux__lead {
    margin: 0 0 32px;
    font-size: 15px;
    line-height: 1.65;
    color: #5f6673;
    max-width: 900px;
}
.why-forux__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.why-forux__card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e2e6ed;
    border-radius: 10px;
    padding: 18px 18px 18px 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.why-forux__card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a8494;
}
.why-forux__icon-svg {
    display: block;
}
.why-forux__card-body {
    min-width: 0;
}
.why-forux__card-title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1d24;
    line-height: 1.35;
}
.why-forux__card-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #5f6673;
}

@media (max-width: 720px) {
    .why-forux__grid {
        grid-template-columns: 1fr;
    }
    .why-forux {
        padding: 36px 0 40px;
    }
}

.site-footer {
    margin-top: 48px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    background: #ffffff;
    border-top: 1px solid #eceff4;
}
.footer-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.2fr) 1fr 1fr;
    gap: 32px 40px;
    align-items: start;
}
.footer-col--brand {
    padding-right: 12px;
}
.footer-logo {
    display: inline-flex;
    align-items: baseline;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    text-decoration: none;
    margin-bottom: 14px;
}
.footer-logo-for,
.footer-logo-x {
    color: #0a0a0a;
}
.footer-logo-u {
    position: relative;
    display: inline-block;
    color: #0a0a0a;
}
.footer-logo-u::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid var(--accent-soft);
}
.footer-desc {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
    max-width: 340px;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-social__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    background: #fff;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-social__btn:hover {
    border-color: #9ca3af;
    color: #111318;
}
.footer-social__btn[href="#"] {
    opacity: 0.45;
    pointer-events: none;
}
.footer-heading {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
}
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-list li {
    margin: 0 0 10px;
}
.footer-list a {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-list a:hover {
    color: #111318;
}
.footer-rule {
    height: 1px;
    background: #e5e7eb;
    margin: 28px 0 20px;
    border: 0;
}
.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}
.footer-contact-left {
    max-width: 520px;
}
.footer-contact-right {
    text-align: right;
    white-space: nowrap;
}
.footer-bar {
    background: #f15a24;
    padding: 14px 20px;
    text-align: center;
}
.footer-bar__text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}
button { background: #14171d; }
a { color: #2b3342; }

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
    }
    .footer-contact-right {
        text-align: left;
        white-space: normal;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    .top-nav .links {
        width: 100%;
    }
    .top-nav .links a {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }
    .hero {
        padding: 24px 16px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .card {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 25px;
    }
    .top-nav .links a {
        flex: 1 1 100%;
    }
    .pill {
        font-size: 12px;
        padding: 6px 10px;
    }
}
