:root {
    --navy: var(--renk-ikincil, #052d52);
    --navy-strong: #02213e;
    --navy-soft: #0b3a65;
    --gold: var(--renk-ana, #d99a23);
    --gold-dark: var(--renk-ana-koyu, #b97711);
    --green: #0a9d59;
    --surface: var(--renk-arkaplan, #fff);
    --surface-soft: #f6f8fa;
    --surface-warm: #fbf8f1;
    --ink: #0a2946;
    --text: var(--renk-metin, #526171);
    --muted: #768391;
    --line: #e4e9ee;
    --line-strong: #d6dde4;
    --white: #fff;
    --shadow-sm: 0 8px 26px rgba(5, 45, 82, 0.08);
    --shadow-md: 0 18px 48px rgba(5, 45, 82, 0.13);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1200px;
    --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-padding-top: 110px;
}

body {
    min-width: 320px;
    background: var(--surface);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.72;
}

body.nav-open,
body.overlay-open {
    overflow: hidden;
}

::selection {
    background: color-mix(in srgb, var(--gold) 28%, white);
    color: var(--navy);
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--gold) 60%, white);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 45px 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.18;
}

h1 {
    font-size: clamp(2.25rem, 4.5vw, 4.25rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(1.85rem, 3.25vw, 3rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: clamp(1rem, 1.45vw, 1.25rem);
}

p {
    max-width: 72ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 27px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.8);
}

.eyebrow--gold {
    color: #f2b846;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin-bottom: 14px;
}

.section-heading p,
.section-lead {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.8;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    max-width: none;
}

.section-heading--split>div {
    max-width: 610px;
}

.section-heading--split>p {
    max-width: 480px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-row--center {
    justify-content: center;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--gold {
    background: var(--gold);
    color: var(--navy-strong);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--gold) 28%, transparent);
}

.button--gold:hover {
    background: #c98b1c;
    color: var(--navy-strong);
}

.button--dark {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(5, 45, 82, 0.16);
}

.button--dark:hover {
    background: var(--navy-strong);
}

.button--outline {
    border-color: var(--navy);
    color: var(--navy);
}

.button--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.button--outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.button--whatsapp {
    background: var(--green);
    color: var(--white);
}

.button--whatsapp:hover {
    background: #078149;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
}

.text-link i {
    transition: transform 180ms ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--navy);
    color: white;
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: none;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.empty-state {
    padding: 28px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    color: var(--muted);
    text-align: center;
}

.prose h2,
.prose h3 {
    margin: 0 0 18px;
}

.prose p+p {
    margin-top: 18px;
}

.admin-content {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
}

.admin-content>*+* {
    margin-top: 1.25em;
}

.admin-content h2,
.admin-content h3,
.admin-content h4 {
    margin-top: 1.6em;
}

.admin-content ul,
.admin-content ol {
    padding-left: 1.25rem;
    list-style: initial;
}

.admin-content ol {
    list-style: decimal;
}

.admin-content a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.admin-content img {
    height: auto;
    border-radius: var(--radius-md);
}