/* =========================================================
   Markatescili.tr — Kurumsal Tasarım Sistemi
   ========================================================= */

/* ---------- 1. Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Palette */
    --c-ink: #0A1628;
    --c-ink-2: #0F1F38;
    --c-ink-3: #1A2B45;
    --c-text: #1A1F2E;
    --c-text-2: #4A5468;
    --c-text-3: #6B7280;
    --c-muted: #94A0B4;
    --c-line: #E6EAF0;
    --c-line-2: #EEF1F6;
    --c-bg: #FFFFFF;
    --c-bg-2: #F7F8FB;
    --c-bg-3: #F1F3F7;
    /* Brand accent — warm gold */
    --c-gold: #EEB141;
    --c-gold-2: #D49528;
    --c-gold-soft: #FCF1D9;
    --c-accent: #1B3A6B;
    --c-success: #1F8A4C;
    --c-danger: #C0392B;

    /* Type */
    --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1320px;
    --container-sm: 1080px;
    /* Radius scale — tek kaynak */
    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Shadow */
    --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 12px 32px -12px rgba(10, 22, 40, 0.18);
    --shadow-lg: 0 24px 60px -20px rgba(10, 22, 40, 0.25);

    /* Motion */
    --ease: cubic-bezier(.2, .7, .2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--ease);
}

ul,
ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font: inherit;
}

/* ---------- 2. Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}

p {
    color: var(--c-text-2);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gold-2);
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--c-gold);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

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

.section-head p {
    font-size: 17px;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--c-gold-2);
}

/* ---------- 3. Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.container--sm {
    max-width: var(--container-sm);
}

section {
    padding: 96px 0;
}

.section--tight {
    padding: 64px 0;
}

.section--alt {
    background: var(--c-bg-2);
}

.section--dark {
    background: var(--c-ink);
    color: #D9E0EC;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #fff;
}

.section--dark p {
    color: #A6B2C7;
}

/* ---------- 4. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: var(--radius);
    transition: all .25s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn .ti {
    font-size: 18px;
}

.btn-primary {
    background: var(--c-ink);
    color: #fff;
}

.btn-primary:hover {
    background: var(--c-ink-3);
}

.btn-gold {
    background: var(--c-gold);
    color: var(--c-ink);
}

.btn-gold:hover {
    background: var(--c-gold-2);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line);
}

.btn-outline:hover {
    border-color: var(--c-ink);
    background: var(--c-ink);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--c-ink);
}

.btn-ghost:hover {
    color: var(--c-gold-2);
}

.btn-sm {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.btn-lg {
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ----- CTA: Telefon Pill ----- */
.cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 5px 18px 5px 5px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-pill);
    color: var(--c-ink);
    transition: all .25s var(--ease);
    box-shadow: var(--shadow-xs);
}

.cta-call:hover {
    border-color: var(--c-ink);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.cta-call__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1F8A4C;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 17px;
    flex-shrink: 0;
}

.cta-call__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.cta-call__text small {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--c-text-3);
    letter-spacing: .02em;
    margin-bottom: 3px;
}

.cta-call__text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -0.01em;
}

/* ----- CTA: Dark Pill ----- */
.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 44px;
    padding: 0 20px;
    background: var(--c-ink);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: all .25s var(--ease);
}

.cta-pill:hover {
    background: var(--c-ink-3);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.cta-pill .ti {
    font-size: 16px;
    transition: transform .2s var(--ease);
}

.cta-pill:hover .ti {
    transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
    .cta-call {
        display: none;
    }
}

