/* ==============================================================
   VardOf — style.css  v4.0  "Apple Ruhu"
   Sade • minimalist • kurumsal

   Tasarım ilkeleri:
   - Aydınlık tema varsayılan; koyu tema saf siyah üzerine kurulu
   - Sistem yazı tipi yığını (SF Pro / Segoe UI hissi), harici font yok
   - Tek vurgu rengi (Apple mavisi); renk yalnızca eylemlerde
   - Bol beyaz alan, ince çizgiler, düz yüzeyler — ışıma/gradient yok
   - Pill (hap) düğmeler, yumuşak 18px köşeler, jenerik gölgeler

   İÇİNDEKİLER
    01. Tokenlar        09. Viewport Kartı     17. Referanslar
    02. Sıfırlama       10. Kartlar            18. Form
    03. Tipografi       11. Sayfa Başlığı      19. CTA
    04. Yerleşim        12. Projeler           20. Footer
    05. Düğmeler        13. Detay Sayfası      21. Yüzenler
    06. Rozetler        14. Zaman Çizelgesi    22. Animasyon
    07. Header          15. Yetenekler         23. Responsive
    08. Hero            16. Akordiyon          24. Hareket & Baskı
   ============================================================== */

/* ==============================================================
   01. TOKENLAR
   ============================================================== */
:root {
    color-scheme: light;

    --bg:            #fbfbfd;      /* Apple sayfa zemini */
    --surface:       #ffffff;
    --surface-2:     #f5f5f7;      /* Apple grisi bantlar */
    --border:        #e8e8ed;
    --border-strong: #d2d2d7;

    --heading:       #1d1d1f;      /* Apple siyahı */
    --text:          #424245;
    --muted:         #86868b;

    --accent: #0071e3;      /* Apple mavisi (buton) */
    --accent-hover: #0077ed;
    --accent-ink: #0066cc;      /* bağlantı metni */
    --accent-deep:   #004aac;
    --accent-soft:   rgba(0, 113, 227, 0.08);
    --accent-ring:   rgba(0, 113, 227, 0.25);

    --ok:            #248a3d;
    --ok-soft:       #e9f7ee;
    --warn:          #b25000;
    --danger:        #d70015;

    --code-bg:       #1d1d1f;
    --code-text:     #e8e8ed;

    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-pill: 980px;

    --sh-xs:   0 1px 2px rgb(0 0 0 / 0.04);
    --sh-soft: 0 6px 20px rgb(0 0 0 / 0.07);
    --sh-lift: 0 14px 36px rgb(0 0 0 / 0.10);

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --t-fast: 150ms;
    --t-mid:  250ms;
    --t-slow: 500ms;

    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
                 "Helvetica Neue", "Segoe UI", Roboto, Inter, Arial, sans-serif;
    --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
}

html.dark {
    color-scheme: dark;

    --bg:            #000000;      /* Apple koyu: saf siyah */
    --surface:       #1d1d1f;
    --surface-2:     #161617;
    --border:        #2c2c2e;
    --border-strong: #3a3a3c;

    --heading:       #f5f5f7;
    --text:          #d2d2d7;
    --muted:         #86868b;

    --accent: #0071e3;      /* Apple koyu tema mavisi */
    --accent-hover: #0077ed;
    --accent-ink: #0066cc;
    --accent-deep:   #0066cc;
    --accent-soft:   rgba(41, 151, 255, 0.12);
    --accent-ring:   rgba(41, 151, 255, 0.30);

    --ok:            #30d158;
    --ok-soft:       rgba(48, 209, 88, 0.12);
    --warn:          #ff9f0a;
    --danger:        #ff453a;

    --code-bg:       #1d1d1f;
    --code-text:     #f5f5f7;

    --sh-soft: 0 8px 28px rgb(0 0 0 / 0.55);
    --sh-lift: 0 18px 44px rgb(0 0 0 / 0.65);
}

/* ==============================================================
   02. SIFIRLAMA & TABAN
   ============================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.01em;             /* Apple'ın sıkı metin hissi */
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color var(--t-mid) ease, color var(--t-mid) ease;
}

img, svg, video, canvas { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; letter-spacing: inherit; }
button { cursor: pointer; background: none; border: none; }
ul[class], ol[class] { list-style: none; padding: 0; }

a { color: var(--accent-ink); text-decoration: none; transition: color var(--t-fast) ease; }
a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

::selection { background: rgb(0 113 227 / 0.15); }
html.dark ::selection { background: rgb(41 151 255 / 0.30); }

:focus-visible {
    outline: 3px solid var(--accent-ring);
    outline-offset: 2px;
    border-radius: var(--r-sm);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; background-clip: content-box; border: 2px solid transparent; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); background-clip: content-box; }

.hidden { display: none !important; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

.skip-link {
    position: fixed; top: -100px; left: 1rem; z-index: 200;
    padding: 0.65rem 1.1rem;
    background: var(--heading); color: var(--bg);
    font-size: 0.82rem; font-weight: 600;
    border-radius: var(--r-pill);
    transition: top var(--t-mid) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ==============================================================
   03. TİPOGRAFİ
   ============================================================== */
h1, h2, h3, h4 {
    color: var(--heading);
    line-height: 1.12;
    letter-spacing: -0.018em;
    font-weight: 700;
    text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 600; }
h4 { font-size: 0.98rem; font-weight: 600; }

p { text-wrap: pretty; }

.lead {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.5;
    color: var(--muted);
    max-width: 58ch;
}

.accent { color: var(--accent-ink); }
.muted  { color: var(--muted); }
.mono   { font-family: var(--font-mono); }

/* Bölüm göz etiketi: Apple'da like cümle-başlık, büyük harf yok */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-ink);
    margin-bottom: 0.8rem;
}

.counter-value { font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* ==============================================================
   04. YERLEŞİM
   ============================================================== */
.container {
    width: min(100% - 3rem, 1060px);      /* Apple genişliği: dar ve odaklı */
    margin-inline: auto;
}

.section {
    position: relative;
    z-index: 1;
    padding-block: clamp(4rem, 9vw, 6.5rem);   /* bol beyaz alan */
}

.section--tint {
    background: var(--surface-2);
}

.section-head {
    max-width: 620px;
    margin: 0 auto clamp(2.8rem, 5vw, 3.8rem);
    text-align: center;
}
.section-head .lead { margin-inline: auto; margin-top: 0.9rem; }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2.4rem, 6vw, 4.5rem);
    align-items: center;
}

.stack { display: grid; gap: 1rem; }
.stack--md { gap: 1.2rem; }
.stack--lg { gap: 1.4rem; }

.grid--snug { gap: 1.2rem; }
.grid--stretch { align-items: stretch; }

/* Sayfa başlığının hemen altından başlayan bölümler */
.section--flush { padding-top: 0.5rem; }

/* Hizmet kartlarına derin bağlantı (#hizmet-web) payı */
[id^="hizmet-"] { scroll-margin-top: 7rem; }

/* Küçük aralık yardımcıları — inline style yerine */
.mt-1  { margin-top: 1rem; }
.mt-14 { margin-top: 1.4rem; }
.text-sm { font-size: 0.95rem; }
.center-cta { text-align: center; margin-top: 2.4rem; }
.center-cta--sm { margin-top: 1.8rem; }
.container--narrow { max-width: 820px; }
.chips-row { margin-top: 1.6rem; gap: 0.9rem; }

/* ==============================================================
   05. DÜĞMELER — hap (pill) formlu, düz renkli
   ============================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.68rem 1.45rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: var(--r-pill);
    border: 1px solid transparent;
    transition: background-color var(--t-fast) ease,
                color var(--t-fast) ease,
                border-color var(--t-fast) ease,
                transform var(--t-fast) var(--ease);
    user-select: none;
}
.btn:active { transform: scale(0.97); }
.btn .fa-arrow-right { transition: transform var(--t-mid) var(--ease); }
.btn:hover .fa-arrow-right { transform: translateX(3px); }

.btn--primary {
    background: var(--accent);
    color: #fff;
}
.btn--primary:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }

.btn--soft {
    background: var(--surface-2);
    color: var(--heading);
}
.btn--soft:hover { background: var(--border); color: var(--heading); text-decoration: none; }

.btn--outline {
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    color: var(--accent-ink);
    background: transparent;
}
.btn--outline:hover { background: var(--accent-soft); }

.btn--light { background: #fff; color: var(--heading); }
.btn--light:hover { background: #f2f2f4; color: var(--heading); }

.btn--ghost-light {
    background: transparent;
    border-color: rgb(255 255 255 / 0.5);
    color: #fff;
}
.btn--ghost-light:hover { background: rgb(255 255 255 / 0.12); color: #fff; }

.btn--lg { padding: 0.9rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: wait; }

/* Metin bağlantıları: Apple'da "Daha fazla >" */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.link-arrow i { font-size: 0.72rem; transition: transform var(--t-mid) var(--ease); }
.link-arrow:hover i { transform: translateX(3px); }

/* ==============================================================
   06. ROZETLER, ÇİPLER, PILL'LER
   ============================================================== */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.36rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 500;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    color: var(--muted);
}
.chip--accent {
    background: var(--accent-soft);
    color: var(--accent-ink);
    font-weight: 600;
}
.chip--soft {
    background: transparent;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
    color: var(--accent-ink);
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tag {
    padding: 0.48rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    color: var(--text);
    transition: background-color var(--t-fast) ease, color var(--t-fast) ease;
}
.tag:hover { background: var(--accent-soft); color: var(--accent-ink); }

/* Görsel üstü durum etiketi: beyaz hap, siyah yazı */
.pill {
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    padding: 0.28rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: var(--r-pill);
    background: rgb(255 255 255 / 0.92);
    color: var(--heading);
    backdrop-filter: blur(6px);
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: var(--r-pill);
    background: var(--ok-soft);
    color: var(--ok);
}
.badge-live .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ok);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ==============================================================
   07. HEADER — ince, yarı saydam, bulanık
   ============================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: 52px;
    background: rgb(251 251 253 / 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgb(0 0 0 / 0.07);
}
html.dark .site-header {
    background: rgb(22 22 23 / 0.8);
    border-bottom-color: rgb(255 255 255 / 0.08);
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 52px;
}

.brand {
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--heading);
}
.brand:hover { color: var(--heading); text-decoration: none; }
.brand em { font-style: normal; color: var(--muted); font-weight: 500; }
.brand em::before { content: "."; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
}
.nav a:hover { color: var(--heading); text-decoration: none; }
.nav a.is-active { color: var(--heading); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 0.55rem; }

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    color: var(--muted);
    font-size: 0.9rem;
    transition: color var(--t-fast) ease, background-color var(--t-fast) ease;
}
.icon-btn:hover { color: var(--heading); background: var(--surface-2); }

.menu-btn { display: none; }

/* Dil düğmesi (TR/EN) */
.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 0.8rem;
    border-radius: var(--r-pill);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    border: 1px solid var(--border-strong);
    transition: color var(--t-fast) ease, border-color var(--t-fast) ease, background-color var(--t-fast) ease;
}
.lang-btn:hover { color: var(--accent-ink); border-color: var(--accent); background: var(--accent-soft); }
.header-cta {
    display: inline-flex;
    padding: 0.42rem 1rem;
    font-size: 0.8rem;
}

/* Mobil menü */
.mobile-nav {
    display: none;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 1.6rem 1.4rem;
}
.mobile-nav:not(.hidden) { display: block; }
.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--heading);
    border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav a.is-active { color: var(--accent-ink); }
.mobile-nav .btn { margin-top: 0.9rem; }

/* ==============================================================
   08. HERO — Apple ürün sayfası düzeni
   Ortalanmış editorial blok: rozet → başlık → alt yazı → CTA,
   ardından tam genişliğe yakın ürün görseli (3D viewport).
   ============================================================== */
.hero {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 52px);
    display: flex;
    align-items: center;
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero__content {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
}

.hero__title { max-width: 16ch; }

.type-line {
    min-height: 2.3rem;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--muted);
}
.type-line #typewriter { color: var(--heading); }
.type-line .caret {
    color: var(--accent-ink);
    font-weight: 400;
    animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__lead { max-width: 52ch; }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding-top: 0.3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: clamp(2rem, 6vw, 3.8rem);
    width: 100%;
    padding-top: 1.8rem;
    margin-top: 0.6rem;
    border-top: 1px solid var(--border);
}
.stat__value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--heading);
    line-height: 1.05;
}
.stat__label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

/* Ürün görseli: başlığın altında, sahnede */
.hero__visual {
    width: min(100%, 680px);
    margin: clamp(2.8rem, 7vw, 4.5rem) auto 0;
}
.hero__visual .viewport { transform-style: preserve-3d; }

/* Teknoloji şeridi */
.tech-strip {
    position: relative;
    z-index: 1;
    padding-block: 1.8rem;
    background: var(--surface-2);
}
.tech-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.tech-strip__label {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.tech-strip .chip { background: var(--surface); }

/* ==============================================================
   09. VIEWPORT KARTI (3D gösterim)
   ============================================================== */
.viewport {
    position: relative;
    background: var(--code-bg);
    border-radius: var(--r-xl);
    padding: 1.15rem 1.25rem;
    box-shadow: var(--sh-lift);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--code-text);
}

.viewport__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.09);
}
.dots { display: flex; gap: 0.45rem; }
.dots i { width: 11px; height: 11px; border-radius: 50%; }
.dots i:nth-child(1) { background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }
.viewport__bar span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: rgb(255 255 255 / 0.5);
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.viewport__canvas {
    position: relative;
    height: 185px;
    margin-bottom: 1rem;
    cursor: grab;
    overflow: hidden;
}
.viewport__canvas:active { cursor: grabbing; }
.viewport__hint {
    position: absolute;
    bottom: 0.5rem; right: 0.75rem;
    font-size: 0.62rem;
    font-family: var(--font-sans);
    color: rgb(255 255 255 / 0.32);
    pointer-events: none;
}

.code .tok-k { color: #ff7eb6; }
.code .tok-v { color: #f5f5f7; }
.code .tok-c { color: #64d2ff; }
.code .tok-s { color: #66d4cf; }
.code .tok-m { color: #7c7c82; }

/* ==============================================================
   10. KARTLAR
   ============================================================== */
.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: box-shadow var(--t-mid) ease, border-color var(--t-mid) ease, transform var(--t-mid) var(--ease);
}
.card:hover {
    box-shadow: var(--sh-soft);
    border-color: transparent;
}
.card--lift:hover { transform: translateY(-3px); }

.card__icon {
    width: 46px; height: 46px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-ink);
    margin-bottom: 1.1rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--muted); }
.card .link-arrow { margin-top: 1.1rem; font-size: 0.88rem; }

.checks { display: grid; gap: 0.55rem; margin-top: 1rem; }
.checks li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.87rem;
    color: var(--text);
    align-items: flex-start;
}
.checks i { color: var(--accent); font-size: 0.7rem; margin-top: 0.35rem; }

.note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    font-size: 0.86rem;
    border-radius: var(--r-md);
    background: var(--surface-2);
    color: var(--text);
}
.note i { color: var(--warn); margin-top: 0.2rem; }
.note strong { color: var(--heading); }

.mini-cards { display: grid; gap: 1rem; }

/* Not kutusu aralığı varyantı */
.note--mt { margin-top: 1.6rem; }

/* Profil kartı altındaki müsaitlik rozeti */
.profile-badge { margin-top: 1.3rem; }

/* Açık liste: kart içi değil, serbest akışta özellik listesi */
.checks--open { margin-top: 0.3rem; gap: 0.7rem; }

/* Paket kartları (hizmetler) */
.plan { display: flex; flex-direction: column; }
.plan__badge {
    position: absolute;
    top: -0.8rem; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.plan--featured { border-color: var(--accent); box-shadow: var(--sh-soft); }
.plan__sub { font-size: 0.84rem; }
.plan__price {
    margin: 1.1rem 0;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--heading);
}
.plan__list { flex: 1; }
.plan__cta { margin-top: 1.6rem; }

.profile-card { text-align: center; padding: 2.2rem 1.8rem; }
.profile-card__avatar {
    width: 88px; height: 88px;
    margin: 0 auto 1.2rem;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--muted);
    border-radius: 50%;
    background: var(--surface-2);
}
.profile-card h3 { font-size: 1.3rem; }
.profile-card > p { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.3rem; }
.profile-card .badge-live { margin-top: 1.3rem; }

.meta-list { text-align: left; display: grid; gap: 0; font-size: 0.86rem; }
.meta-list > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}
.meta-list > li:last-child { border-bottom: 0; }
.meta-list .k { color: var(--muted); display: inline-flex; gap: 0.5rem; align-items: center; }
.meta-list .k i { color: var(--muted); width: 1rem; text-align: center; font-size: 0.8rem; }
.meta-list .v { font-weight: 600; color: var(--heading); text-align: right; }

.num-card__no {
    position: absolute;
    top: 1.3rem; right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--border-strong);
}

/* ==============================================================
   11. SAYFA BAŞLIĞI & BREADCRUMB
   ============================================================== */
.page-head {
    position: relative;
    z-index: 1;
    padding-top: calc(52px + clamp(3.4rem, 9vw, 6rem));
    padding-bottom: clamp(2rem, 5vw, 3.2rem);
}
.page-head h1 { margin-top: 0.8rem; max-width: 24ch; }
.page-head .lead { margin-top: 0.9rem; }
.page-head .eyebrow { margin-bottom: 1rem; }
.page-head .chip--accent { margin-bottom: 1rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
}
.breadcrumb i { font-size: 0.5rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-ink); }
.breadcrumb [aria-current] { color: var(--heading); font-weight: 500; }

/* 404 sayfası */
.error-code {
    font-size: clamp(5rem, 16vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--accent-ink);
}
.error-title { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: 1rem; }
.error-lead { margin: 1rem auto 0; }
.nf-wrap { text-align: center; position: relative; }
.nf-actions { justify-content: center; margin-top: 2rem; }

/* ==============================================================
   12. PROJE KARTLARI & FİLTRELER
   ============================================================== */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}
.filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--muted);
    transition: all var(--t-fast) ease;
}
.filter-btn:hover { color: var(--heading); background: var(--surface-2); }
.filter-btn.is-active {
    background: var(--accent);
    color: #fff;
}

.results-count {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 2.8rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.project { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.project__media {
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background: linear-gradient(165deg, #2c2c2e 0%, #1d1d1f 100%);
    overflow: hidden;
}
.project__media i {
    font-size: 2.8rem;
    color: rgb(255 255 255 / 0.35);
    transition: color var(--t-mid) ease, transform var(--t-slow) var(--ease);
}
.project:hover .project__media i { color: rgb(255 255 255 / 0.85); transform: scale(1.08); }

.project__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.project__body { padding: 1.5rem 1.55rem 1.3rem; }
.project__title {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    transition: color var(--t-fast) ease;
}
.project:hover .project__title { color: var(--accent-ink); }
.project__desc { font-size: 0.86rem; color: var(--muted); }
.project__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.55rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
}
.project__foot .muted:hover { color: var(--heading); }

/* ==============================================================
   13. PROJE DETAY SAYFASI
   ============================================================== */
.detail-hero__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: end;
}
.detail-hero__media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-xl);
    background: linear-gradient(165deg, #2c2c2e, #1d1d1f);
    display: grid;
    place-items: center;
    box-shadow: var(--sh-lift);
    overflow: hidden;
    margin: 0;
}
.detail-hero__media > i { font-size: 4rem; color: rgb(255 255 255 / 0.55); }
.detail-hero__media figcaption {
    position: absolute;
    bottom: 1rem; left: 1.2rem; right: 1.2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgb(255 255 255 / 0.7);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag-row--flush { margin-top: 0; }
.v--ok { color: var(--ok); }

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(2.4rem, 5vw, 3.8rem);
    align-items: start;
}
.detail-main { display: grid; gap: 2.8rem; }
.detail-main > section > h2 { margin-bottom: 1rem; }
.detail-main p { color: var(--text); }
.detail-main p + p { margin-top: 0.9rem; }

.callout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.callout {
    border-radius: var(--r-lg);
    padding: 1.4rem 1.5rem;
    background: var(--surface-2);
}
.callout h3 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}
.callout p { font-size: 0.86rem; color: var(--muted); }
.callout--warn h3 { color: var(--danger); }
.callout--ok h3 { color: var(--ok); }
.callout h3 i { font-size: 0.85rem; }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.metric {
    text-align: center;
    padding: 1.6rem 1rem;
    background: var(--surface-2);
    border-radius: var(--r-lg);
}
.metric__value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--heading);
}
.metric__label { font-size: 0.72rem; color: var(--muted); margin-top: 0.3rem; }

.sidebar { display: grid; gap: 1.2rem; position: sticky; top: 76px; }
.side-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
}
.side-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}
.side-box h3 i { color: var(--muted); }
.side-box .tag-cloud { gap: 0.4rem; }

.side-cta {
    background: var(--heading);          /* kurumsal siyah promosyon kutusu */
    border: none;
    color: var(--bg);
}
html.dark .side-cta { background: var(--surface); border: 1px solid var(--border); }
.side-cta h3 { color: inherit; }
.side-cta h3 i { color: inherit; opacity: 0.7; }
.side-cta p { font-size: 0.85rem; color: inherit; opacity: 0.75; margin-bottom: 1.1rem; }

.pn-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.pn {
    padding: 1.15rem 1.35rem;
    background: var(--surface-2);
    border-radius: var(--r-lg);
    display: grid;
    gap: 0.3rem;
    transition: background-color var(--t-fast) ease, transform var(--t-mid) var(--ease);
}
.pn:hover { background: var(--accent-soft); transform: translateY(-2px); }
.pn small { font-size: 0.7rem; font-weight: 500; color: var(--muted); display: inline-flex; gap: 0.45rem; align-items: center; }
.pn strong { color: var(--heading); font-size: 0.9rem; }
.pn:hover strong { color: var(--accent-ink); }
.pn--next { text-align: right; justify-items: end; }

/* ==============================================================
   14. ZAMAN ÇİZELGESİ & SEKMELER
   ============================================================== */
.timeline {
    position: relative;
    display: grid;
    gap: 1.4rem;
    padding-left: 1.9rem;
    max-width: 740px;
    margin-inline: auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 6px; top: 8px; bottom: 8px;
    width: 1.5px;
    background: var(--border-strong);
}
.t-item { position: relative; }
.t-item::before {
    content: "";
    position: absolute;
    left: -1.9rem;
    top: 1.7rem;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 1.5px var(--accent);
}
.t-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.45rem 1.6rem;
}
.t-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}
.t-card__period {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-ink);
    background: var(--accent-soft);
    padding: 0.24rem 0.65rem;
    border-radius: var(--r-pill);
}
.t-card__loc { font-size: 0.72rem; color: var(--muted); display: inline-flex; gap: 0.4rem; align-items: center; }
.t-card h3 { font-size: 1.02rem; }
.t-card__org { font-size: 0.82rem; color: var(--muted); margin: 0.12rem 0 0.6rem; }
.t-card p:last-child { font-size: 0.88rem; color: var(--text); }

/* Segment kontrolü (Apple ayarlar hissi) */
.tabs { display: flex; justify-content: center; margin-bottom: 2.4rem; }
.tabs__inner {
    display: inline-flex;
    gap: 0.25rem;
    padding: 3px;
    background: var(--surface-2);
    border-radius: 12px;
}
.tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.52rem 1.25rem;
    font-size: 0.83rem;
    font-weight: 500;
    border-radius: 9.5px;
    color: var(--muted);
    transition: all var(--t-fast) ease;
}
.tab i { font-size: 0.78rem; }
.tab:hover { color: var(--heading); }
.tab.active {
    background: var(--surface);
    color: var(--heading);
    box-shadow: var(--sh-xs);
    font-weight: 600;
}

.tab-panel { display: none; }
.tab-panel.active {
    display: grid;
    gap: 1.3rem;
    animation: fadeUp var(--t-slow) var(--ease);
}

/* ==============================================================
   15. YETENEKLER
   ============================================================== */
.skill { display: grid; gap: 0.5rem; }
.skill__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--heading);
}
.skill__pct { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }
.skill__bar {
    height: 4px;
    border-radius: 99px;
    background: var(--border);
    overflow: hidden;
}
.skill__fill {
    height: 100%;
    width: var(--w, 50%);
    border-radius: inherit;
    background: var(--accent);          /* düz renk — gradient yok */
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
}
.card-title i { color: var(--muted); }

/* ==============================================================
   16. AKORDİYON (SSS)
   ============================================================== */
.accordion { display: grid; gap: 0.8rem; max-width: 760px; margin-inline: auto; }
.acc-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--t-fast) ease;
}
.acc-item:has(.accordion-header[aria-expanded="true"]) { border-color: var(--border-strong); }

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.1rem 1.4rem;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--heading);
    transition: background-color var(--t-fast) ease;
}
.accordion-header:hover { background: var(--surface-2); }
.accordion-header .acc-icon {
    color: var(--muted);
    font-size: 0.75rem;
    transition: transform var(--t-mid) var(--ease);
}
.accordion-header[aria-expanded="true"] .acc-icon { transform: rotate(180deg); color: var(--accent-ink); }

.accordion-content {
    padding: 0.9rem 1.4rem 1.2rem;
    font-size: 0.88rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}
.accordion-content:not(.hidden) { animation: accordionIn var(--t-mid) var(--ease); }

/* ==============================================================
   17. REFERANSLAR
   ============================================================== */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stats-band .stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.6rem 1rem;
    text-align: center;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.quote-card {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.7rem;
    margin: 0;
    transition: box-shadow var(--t-mid) ease, transform var(--t-mid) var(--ease);
}
.quote-card:hover { box-shadow: var(--sh-soft); transform: translateY(-2px); }
.stars { display: flex; gap: 0.22rem; color: #f5a623; font-size: 0.76rem; }
.quote-text { font-size: 0.9rem; color: var(--text); flex: 1; }
.quote-text--lg { font-size: 1.05rem; }
.quote-by {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--surface-2);
    color: var(--muted);
}
.quote-by strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--heading); }
.quote-by span { font-size: 0.73rem; color: var(--muted); }

/* ==============================================================
   18. İLETİŞİM FORMU
   ============================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.2rem, 5vw, 4rem);
    align-items: start;
}
.info-list { display: grid; gap: 1.1rem; }
.info-item { display: flex; align-items: center; gap: 1rem; }
.info-item__icon {
    width: 44px; height: 44px;
    flex: none;
    display: grid;
    place-items: center;
    font-size: 1rem;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--muted);
}
.info-item small { display: block; font-size: 0.72rem; color: var(--muted); }
.info-item strong { color: var(--heading); font-size: 0.92rem; font-weight: 600; }

.social-row { display: flex; gap: 0.6rem; }

.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(1.6rem, 4vw, 2.2rem);
    display: grid;
    gap: 1.4rem;
    box-shadow: var(--sh-xs);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.field { display: grid; gap: 0.4rem; }
.label {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--muted);
}
.input, .textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    font-size: 0.9rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--heading);
    transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.input::placeholder, .textarea::placeholder { color: var(--muted); opacity: 0.65; }
.input:focus, .textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-ring);
}
.textarea { resize: vertical; min-height: 128px; }

.input[aria-invalid="true"] {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger) 12%, transparent);
}
.field-error {
    color: var(--danger);
    font-size: 0.73rem;
    font-weight: 500;
}

.form-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    font-size: 0.86rem;
    font-weight: 500;
    border-radius: var(--r-md);
    background: var(--ok-soft);
    color: var(--ok);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form-foot-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* ==============================================================
   19. CTA — gri bant, siyah başlık, mavi hap
   ============================================================== */
.cta-band { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(4rem, 9vw, 6.5rem); }
.cta-band__inner {
    position: relative;
    text-align: center;
    padding: clamp(3rem, 7vw, 4.6rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: var(--r-xl);
    background: var(--surface-2);
}
.cta-band__inner::before { content: none; }   /* süs yok */
.cta-band h2 { color: var(--heading); }
.cta-band p {
    color: var(--muted);
    max-width: 520px;
    margin: 0.8rem auto 0;
    font-size: 0.98rem;
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

/* ==============================================================
   20. FOOTER — Apple tarzı gri bant, küçük tipografi
   ============================================================== */
.site-footer {
    position: relative;
    z-index: 1;
    background: var(--surface-2);
    padding-top: clamp(2.6rem, 5vw, 3.4rem);
    padding-bottom: 1.6rem;
    font-size: 0.8rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 2.4rem;
}
.footer-brand .brand { font-size: 1.05rem; }
.footer-brand p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.8rem 0 1.1rem;
    max-width: 32ch;
}
.footer-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.9rem;
}
.footer-list { display: grid; gap: 0.5rem; }
.footer-list a { color: var(--muted); font-size: 0.8rem; }
.footer-list a:hover { color: var(--heading); }
.footer-list i { font-size: 0.6rem; color: var(--muted); margin-right: 0.4rem; }
.footer-contact { display: grid; gap: 0.65rem; color: var(--muted); }
.footer-contact li { display: flex; align-items: center; gap: 0.55rem; }
.footer-contact i { color: var(--muted); width: 1rem; text-align: center; }
.footer-contact + .badge-live { margin-top: 1.1rem; font-size: 0.7rem; }
.footer-love .fa-code { color: var(--accent); }
.footer-love .fa-heart { color: var(--danger); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: 2.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    font-size: 0.74rem;
    color: var(--muted);
}
.footer-bottom i { font-size: 0.72rem; }

/* ==============================================================
   21. YÜZEN ÖĞELER
   ============================================================== */
#three-bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.10;
    pointer-events: none;
}
html:not(.dark) #three-bg-canvas { opacity: 0.07; }

#back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface);
    color: var(--heading);
    border: 1px solid var(--border);
    box-shadow: var(--sh-soft);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity var(--t-mid) ease, transform var(--t-mid) var(--ease);
}
#back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); }

/* ==============================================================
   22. ANİMASYONLAR & SCROLL REVEAL
   ============================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes accordionIn {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-on-scroll.revealed { opacity: 1; transform: none; }

.tab-panel.active > * { animation: fadeUp var(--t-slow) var(--ease) both; }

/* ==============================================================
   23. RESPONSIVE
   ============================================================== */
@media (max-width: 1024px) {
    .detail-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .detail-hero__grid { grid-template-columns: 1fr; align-items: start; }
    .quotes-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .menu-btn { display: inline-flex; }

    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .projects-grid, .quotes-grid { grid-template-columns: 1fr; }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .metrics { grid-template-columns: 1fr; }
    .callout-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .sidebar { grid-template-columns: 1fr; }
    .pn-nav { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { width: min(100% - 2.2rem, 1060px); }
    .hero__actions .btn { width: 100%; }
    .stats { gap: 1.4rem; }
    .cta-band__actions .btn { width: 100%; }
    #back-to-top { bottom: 1rem; right: 1rem; }
}

/* ==============================================================
   24. HAREKET AZALTMA & BASKI
   ============================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal-on-scroll { opacity: 1; transform: none; }
    .badge-live .dot, .type-line .caret { animation: none; }
}

@media print {
    .site-header, .mobile-nav, #back-to-top, #three-bg-canvas,
    .site-footer, .skip-link, .cta-band, .hero__actions, .filters {
        display: none !important;
    }
    body { background: #fff; color: #000; }
    main { padding-top: 0 !important; }
    a { color: #000; text-decoration: underline; }
    .card, .t-card, .quote-card, .side-box { box-shadow: none; border-color: #ccc; }
}
