:root {
    --navy: #163A79;
    --navy-deep: #071B3D;
    --gold: #D7A441;
    --gold-soft: #F8E8BF;
    --ink: #07152D;
    --muted: #64748B;
    --faint: #F8FAFF;
    --positive: #15803D;
    --negative: #B91C1C;
    --neutral: #64748B;
    --space: clamp(24px, 5vw, 80px);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #FFFFFF;
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background: #FFFFFF;
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.page-shell {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 38px 0 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 85px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 3vw, 34px);
    color: var(--muted);
    font-size: 14px;
    letter-spacing: .01em;
}

.nav a {
    padding: 10px 0;
    transition: color .2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--navy);
}

.hero,
.detail-hero {
    padding: clamp(58px, 9vw, 128px) 0 clamp(42px, 8vw, 96px);
    max-width: 980px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 940px;
    margin-bottom: 26px;
    color: var(--navy-deep);
    font-size: clamp(44px, 7vw, 86px);
    line-height: .98;
    letter-spacing: -.065em;
}

h2 {
    color: var(--navy-deep);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.03;
    letter-spacing: -.045em;
    margin-bottom: 18px;
}

h3 {
    color: var(--navy-deep);
    font-size: 20px;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.hero-copy,
.detail-hero p,
.section-heading p,
.content-block p,
.faq p,
.converter p,
.site-footer p {
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.72;
}

.hero-copy {
    max-width: 760px;
}

.freshness {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
}

.freshness strong {
    color: var(--navy);
    font-size: 18px;
    font-variant-numeric: tabular-nums;
}

/* HERO BANNER */

.hero-slider {
    position: relative;
    width: 100%;
    margin-top: clamp(34px, 5vw, 72px);
    overflow: hidden;
    background: #FFFFFF;
}

.hero-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 810;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('/heroback.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.64) 31%,
        rgba(255, 255, 255, 0.18) 58%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    width: min(520px, 44%);
    padding-left: clamp(34px, 5vw, 76px);
    padding-top: 0;
    padding-bottom: 0;
}

.hero-slider .eyebrow {
    margin-bottom: 14px;
}

.hero-slider h1 {
    max-width: 520px;
    margin-bottom: 20px;
    color: var(--navy-deep);
    font-size: clamp(32px, 3.7vw, 58px);
    line-height: .98;
    letter-spacing: -.06em;
}

.hero-slider .hero-copy {
    max-width: 500px;
    color: var(--muted);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.75;
}

.hero-slider .freshness {
    margin-top: 24px;
}

/* KAYAN FİYAT BANDI */

.market-ticker {
    width: 100%;
    overflow: hidden;
    padding: clamp(24px, 3vw, 38px) 0 clamp(56px, 7vw, 96px);
    background: #FFFFFF;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: clamp(42px, 6vw, 92px);
    min-width: max-content;
    animation: altinfiTicker 42s linear infinite;
    will-change: transform;
}

.market-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: var(--navy-deep);
}

.ticker-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.ticker-price {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
    color: var(--navy-deep);
}

.ticker-change {
    font-size: 13px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

@keyframes altinfiTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* PİYASA KARTLARI */

.market-lead {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(26px, 5vw, 68px);
    padding: clamp(18px, 4vw, 42px) 0 clamp(58px, 8vw, 118px);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 72px) clamp(28px, 5vw, 78px);
}

.quote {
    min-width: 0;
}

.quote-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.quote-name {
    color: var(--navy-deep);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.quote-code {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.quote-values {
    display: grid;
    gap: 18px;
}

.quote-values .label,
.single-rate-values span,
.micro-stats span,
.converter-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.quote-values strong,
.single-rate-values strong {
    display: inline-block;
    color: var(--navy-deep);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
    transition: color .25s ease, transform .25s ease;
}

.quote.featured .quote-values strong {
    font-size: clamp(28px, 4vw, 48px);
}

.change {
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.positive {
    color: var(--positive) !important;
}

.negative {
    color: var(--negative) !important;
}

.neutral {
    color: var(--neutral) !important;
}

.quote.is-fresh strong,
.single-rate.is-fresh strong {
    transform: translateY(-1px);
}

/* ANA BÖLÜMLER */

.market-section {
    padding: clamp(48px, 8vw, 118px) 0;
}

.market-section.compact {
    padding-top: clamp(44px, 7vw, 96px);
}

.section-heading {
    max-width: 720px;
    margin-bottom: clamp(46px, 7vw, 86px);
}

.converter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(36px, 6vw, 96px);
    align-items: start;
    padding: clamp(58px, 8vw, 118px) 0;
}

.converter-form {
    display: grid;
    gap: 20px;
}

.converter-form input {
    width: 100%;
    appearance: textfield;
    background: #FFFFFF;
    color: var(--navy-deep);
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 800;
    letter-spacing: -.06em;
    outline: 0;
    padding: 0;
    border: 0;
}

.converter-form input::placeholder {
    color: #CBD5E1;
}

.converter-form output {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
}

.content-block {
    max-width: 840px;
    padding: clamp(58px, 8vw, 118px) 0;
}

.content-block p {
    margin-bottom: 24px;
}

.detail-content {
    padding-bottom: clamp(42px, 7vw, 96px);
}

/* TEKİL FİYAT SAYFASI */

.single-rate {
    padding: clamp(20px, 5vw, 52px) 0 clamp(60px, 8vw, 116px);
}

.single-rate-title {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: clamp(38px, 6vw, 74px);
}

.single-rate-title span {
    color: var(--navy-deep);
    font-size: clamp(36px, 6vw, 74px);
    font-weight: 850;
    letter-spacing: -.06em;
}

.single-rate-title em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.single-rate-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 80px);
    margin-bottom: clamp(42px, 6vw, 76px);
}

.single-rate-values strong {
    font-size: clamp(44px, 7vw, 94px);
}

.micro-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 56px);
}

.micro-stats strong {
    display: block;
    color: var(--navy-deep);
    font-size: clamp(20px, 3vw, 30px);
    letter-spacing: -.035em;
    font-variant-numeric: tabular-nums;
    margin-top: 6px;
}

/* İÇERİK VE FOOTER */

.faq {
    max-width: 860px;
    padding: clamp(50px, 8vw, 112px) 0;
}

.faq article {
    margin-top: 44px;
}

.site-footer {
    padding: clamp(60px, 8vw, 110px) 0 44px;
    color: var(--muted);
}

.footer-brand {
    color: var(--navy);
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -.045em;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--navy);
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .market-lead,
    .market-grid,
    .single-rate-values,
    .micro-stats,
    .converter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide-content {
        width: min(500px, 50%);
    }

    .hero-slider h1 {
        font-size: clamp(32px, 4.6vw, 52px);
    }
}

@media (max-width: 760px) {
    .hero-slider {
        margin-top: 22px;
    }

    .hero-slide {
        aspect-ratio: 4 / 5;
        align-items: flex-start;
        background-position: center bottom;
    }

    .hero-slide::before {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.76) 38%,
            rgba(255, 255, 255, 0.10) 72%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .hero-slide-content {
        width: 88%;
        padding-left: 24px;
        padding-top: 42px;
    }

    .hero-slider h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero-slider .hero-copy {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-slider .freshness {
        margin-top: 20px;
    }

    .market-ticker {
        padding-top: 22px;
    }

    .ticker-track {
        gap: 44px;
        animation-duration: 34s;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(100% - 24px, var(--max));
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 28px;
    }

    .brand img {
        width: 85px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .market-lead,
    .market-grid,
    .single-rate-values,
    .micro-stats,
    .converter {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(42px, 14vw, 64px);
    }

    .single-rate-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* v0.3 — Premium fiyat kartları ve editorial SEO alanı */

.market-lead {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(44px, 6.5vw, 104px);
    padding: clamp(46px, 5vw, 74px) 0 clamp(82px, 9vw, 146px);
}

.market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(72px, 8vw, 118px) clamp(48px, 7vw, 108px);
}

.quote {
    position: relative;
}

.quote-link {
    gap: 9px;
    margin-bottom: clamp(24px, 3vw, 34px);
}

.quote-name {
    font-size: clamp(25px, 2.6vw, 36px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.052em;
}

.quote-code {
    color: #718096;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .18em;
}

.quote-values {
    gap: clamp(20px, 2.5vw, 30px);
}

.quote-values > div {
    display: grid;
    gap: 7px;
}

.quote-values .label {
    margin-bottom: 0;
    color: #718096;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .16em;
}

.quote-values strong {
    font-size: clamp(32px, 4vw, 52px);
    line-height: .94;
    font-weight: 850;
    letter-spacing: -.058em;
}

.quote.featured .quote-values strong {
    font-size: clamp(36px, 4.3vw, 58px);
}

.change {
    margin-top: 2px;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -.01em;
}

.market-section {
    padding: clamp(76px, 10vw, 154px) 0;
}

.market-section.compact {
    padding-top: clamp(72px, 9vw, 138px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(62px, 8vw, 112px);
}

.section-heading .eyebrow {
    margin-bottom: 18px;
}

.section-heading h2 {
    max-width: 760px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.058em;
}

.section-heading p {
    max-width: 690px;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.72;
}

/* Editorial SEO alanı */

.editorial-section {
    padding: clamp(86px, 11vw, 172px) 0 clamp(70px, 9vw, 138px);
}

.editorial-header {
    max-width: 840px;
    margin-bottom: clamp(60px, 8vw, 112px);
}

.editorial-kicker {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.editorial-title {
    max-width: 840px;
    margin-bottom: 26px;
    color: var(--navy-deep);
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: .98;
    letter-spacing: -.062em;
}

.editorial-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.78;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(58px, 7vw, 104px) clamp(54px, 8vw, 128px);
    max-width: 1040px;
}

.editorial-article h3 {
    max-width: 460px;
    margin-bottom: 18px;
    color: var(--navy-deep);
    font-size: clamp(25px, 2.7vw, 38px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -.048em;
}

.editorial-article p {
    max-width: 500px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.82;
}

.editorial-note {
    max-width: 780px;
    margin-top: clamp(70px, 9vw, 126px);
    color: var(--muted);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.82;
}

.editorial-note strong {
    color: var(--navy-deep);
    font-weight: 850;
}

/* FAQ alanını da editorial yapıya yaklaştır */

.faq {
    max-width: 920px;
    padding: clamp(74px, 10vw, 150px) 0;
}

.faq article {
    max-width: 780px;
    margin-top: clamp(42px, 5vw, 72px);
}

.faq h3 {
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.faq p {
    max-width: 760px;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.82;
}

/* Responsive düzen */

@media (max-width: 980px) {
    .market-lead,
    .market-grid,
    .editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .market-lead {
        gap: 64px 54px;
    }
}

@media (max-width: 680px) {
    .market-lead,
    .market-grid,
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .market-lead {
        padding-top: 42px;
        gap: 58px;
    }

    .market-grid {
        gap: 64px;
    }

    .quote-values strong,
    .quote.featured .quote-values strong {
        font-size: clamp(42px, 14vw, 62px);
    }

    .editorial-section {
        padding-top: 84px;
    }

    .editorial-title {
        font-size: clamp(42px, 12vw, 62px);
    }
}

.site-header {
    padding-bottom: 12px;
}

.hero-slider {
    margin-top: clamp(12px, 2vw, 28px);
}

/* v0.8 — Altın Fi ana sayfa net piyasa girişi */

.hero,
.hero-slider,
.hero-kinetic {
    display: none !important;
}

/* Header */

.site-header {
    padding-top: clamp(34px, 4vw, 48px) !important;
    padding-bottom: clamp(56px, 7vw, 96px) !important;
}

/* Ana giriş başlığı */

.home-intro {
    max-width: 1060px;
    padding: 0 0 clamp(30px, 4vw, 52px);
}

.home-intro h1 {
    max-width: 1040px;
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(48px, 6.2vw, 94px);
    font-weight: 850;
    line-height: .96;
    letter-spacing: -.07em;
}

.home-update {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin-top: clamp(24px, 3vw, 38px);
    color: var(--muted);
    font-size: 14px;
}

.home-update strong {
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
}

/* Kayan fiyat bandı */

.market-ticker {
    width: 100%;
    overflow: hidden;
    padding: clamp(18px, 2.8vw, 34px) 0 clamp(58px, 7vw, 96px) !important;
    background: #FFFFFF;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: clamp(46px, 6vw, 96px);
    min-width: max-content;
    animation: altinfiTicker 42s linear infinite;
    will-change: transform;
}

.market-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: var(--navy-deep);
}

.ticker-name {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ticker-price {
    color: var(--navy-deep);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 850;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
}

.ticker-change {
    font-size: 13px;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
}

@keyframes altinfiTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Altın renkli küçük başlıkları kaldır */

.eyebrow,
.editorial-kicker {
    display: none !important;
}

/* Öne çıkan fiyatlar */

.market-lead {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(42px, 5.5vw, 86px) !important;
    padding-top: 0 !important;
    padding-bottom: clamp(76px, 9vw, 142px) !important;
}

.quote-link {
    gap: 7px !important;
    margin-bottom: 24px !important;
}

.quote-name {
    color: var(--navy-deep);
    font-size: clamp(23px, 2.2vw, 32px) !important;
    font-weight: 850;
    line-height: 1.02 !important;
    letter-spacing: -.046em !important;
}

.quote-code {
    color: var(--muted);
    font-size: 10px !important;
    font-weight: 850;
    letter-spacing: .18em !important;
}

.quote-values {
    gap: 18px !important;
}

.quote-values .label {
    margin-bottom: 3px !important;
    color: var(--muted);
    font-size: 10px !important;
    font-weight: 850;
    letter-spacing: .17em !important;
}

.quote-values strong,
.quote.featured .quote-values strong {
    color: var(--navy-deep);
    font-size: clamp(34px, 3.4vw, 50px) !important;
    font-weight: 850;
    line-height: .96 !important;
    letter-spacing: -.055em !important;
    font-variant-numeric: tabular-nums;
}

.change {
    margin-top: 0 !important;
    font-size: 14px !important;
    font-weight: 850;
}

/* Altın Fi Altın Fiyatları alanı */

.market-section {
    padding: clamp(74px, 9vw, 146px) 0 !important;
}

.section-heading {
    max-width: 780px !important;
    margin-bottom: clamp(56px, 7vw, 96px) !important;
}

.section-heading h2 {
    max-width: 780px;
    color: var(--navy-deep);
    font-size: clamp(38px, 4.8vw, 68px) !important;
    font-weight: 850;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
}

.section-heading p {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(16px, 1.45vw, 20px) !important;
    line-height: 1.76 !important;
}

.market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(66px, 8vw, 112px) clamp(48px, 7vw, 96px) !important;
}

.market-grid .quote-values strong {
    font-size: clamp(31px, 3vw, 44px) !important;
}

/* Altın hesaplama */

.converter {
    padding: clamp(74px, 9vw, 146px) 0 !important;
}

.converter h2 {
    max-width: 680px;
    font-size: clamp(38px, 4.8vw, 68px) !important;
    font-weight: 850;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
}

.converter p {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(16px, 1.45vw, 20px) !important;
    line-height: 1.76 !important;
}



.editorial-section {
    padding: clamp(86px, 10vw, 164px) 0 clamp(76px, 9vw, 142px) !important;
}

.editorial-header {
    max-width: 900px;
    margin-bottom: clamp(58px, 7vw, 104px);
}

.editorial-title {
    max-width: 900px;
    color: var(--navy-deep);
    font-size: clamp(38px, 4.8vw, 68px) !important;
    font-weight: 850;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
}

.editorial-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(17px, 1.55vw, 21px) !important;
    line-height: 1.78 !important;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(58px, 7vw, 104px) clamp(54px, 8vw, 128px);
    max-width: 1040px;
}

.editorial-article h3 {
    max-width: 460px;
    margin-bottom: 18px;
    color: var(--navy-deep);
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -.048em;
}

.editorial-article p {
    max-width: 500px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.82;
}

.editorial-note {
    max-width: 780px;
    margin-top: clamp(68px, 8vw, 116px);
    color: var(--muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.82;
}

.editorial-note strong {
    color: var(--navy-deep);
    font-weight: 850;
}

/* Mobil */

@media (max-width: 980px) {
    .market-lead,
    .market-grid,
    .editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding-top: 28px !important;
        padding-bottom: 50px !important;
    }

    .home-intro {
        padding-bottom: 32px;
    }

    .home-intro h1 {
        font-size: clamp(32px, 12vw, 64px);
        letter-spacing: -.075em;
    }

    .home-update {
        margin-top: 22px;
    }

    .market-ticker {
        padding-top: 18px !important;
        padding-bottom: 54px !important;
    }

    .ticker-track {
        gap: 46px;
        animation-duration: 34s;
    }

    .market-lead,
    .market-grid,
    .editorial-grid {
        grid-template-columns: 1fr !important;
    }

    .market-lead,
    .market-grid {
        gap: 58px !important;
    }

    .quote-values strong,
    .quote.featured .quote-values strong,
    .market-grid .quote-values strong {
        font-size: clamp(42px, 13vw, 60px) !important;
    }

    .section-heading h2,
    .converter h2,
    .editorial-title {
        font-size: clamp(38px, 11vw, 58px) !important;
    }
}

/* v0.9 — Fiyat öncelikli temiz ana sayfa */

.hero,
.hero-slider,
.hero-kinetic,
.editorial-section {
    display: none !important;
}

.eyebrow,
.editorial-kicker {
    display: none !important;
}

.site-header {
    padding-top: clamp(30px, 3.5vw, 44px) !important;
    padding-bottom: clamp(42px, 5vw, 72px) !important;
}

.home-intro {
    max-width: 780px;
    padding: 0 0 clamp(26px, 3vw, 42px);
}

.home-intro h1 {
    max-width: 760px;
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(24px, 4.2vw, 62px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.home-update {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-top: clamp(18px, 2vw, 28px);
    color: var(--muted);
    font-size: 14px;
}

.home-update strong {
    color: var(--navy);
    font-size: 17px;
    font-weight: 820;
    font-variant-numeric: tabular-nums;
}

/* Kayan fiyat bandı */

.market-ticker {
    width: 100%;
    overflow: hidden;
    padding: clamp(14px, 2vw, 26px) 0 clamp(46px, 6vw, 78px) !important;
    background: #FFFFFF;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: clamp(42px, 5vw, 82px);
    min-width: max-content;
    animation: altinfiTicker 42s linear infinite;
    will-change: transform;
}

.market-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: baseline;
    gap: 11px;
    color: var(--navy-deep);
}

.ticker-name {
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ticker-price {
    color: var(--navy-deep);
    font-size: clamp(20px, 1.8vw, 27px);
    font-weight: 820;
    letter-spacing: -.025em;
    font-variant-numeric: tabular-nums;
}

.ticker-change {
    font-size: 12px;
    font-weight: 820;
    font-variant-numeric: tabular-nums;
}

@keyframes altinfiTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Bölüm başlıkları: küçük, fiyatların önüne geçmeyen yapı */

.home-market-block {
    padding: 0;
}

.section-heading.compact-heading {
    max-width: 760px !important;
    margin-bottom: clamp(34px, 4vw, 54px) !important;
}

.section-heading.compact-heading h2,
.section-heading h2,
.converter h2,
.seo-accordion-section h2 {
    max-width: 760px;
    color: var(--navy-deep);
    font-size: clamp(26px, 3vw, 42px) !important;
    font-weight: 820 !important;
    line-height: 1.12 !important;
    letter-spacing: -.025em !important;
    margin-bottom: 14px !important;
}

.section-heading.compact-heading p,
.section-heading p,
.converter p {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(15px, 1.25vw, 18px) !important;
    line-height: 1.72 !important;
}

/* Popüler piyasa ürünleri */

.market-lead {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(34px, 4.5vw, 72px) !important;
    padding-top: 0 !important;
    padding-bottom: clamp(74px, 8vw, 128px) !important;
}

.quote-link {
    gap: 7px !important;
    margin-bottom: 22px !important;
}

.quote-name {
    color: var(--navy-deep);
    font-size: clamp(22px, 2vw, 30px) !important;
    font-weight: 820 !important;
    line-height: 1.06 !important;
    letter-spacing: -.025em !important;
}

.quote-code {
    color: var(--muted);
    font-size: 10px !important;
    font-weight: 820 !important;
    letter-spacing: .16em !important;
}

.quote-values {
    gap: 17px !important;
}

.quote-values .label {
    margin-bottom: 3px !important;
    color: var(--muted);
    font-size: 10px !important;
    font-weight: 820 !important;
    letter-spacing: .15em !important;
}

.quote-values strong,
.quote.featured .quote-values strong {
    color: var(--navy-deep);
    font-size: clamp(32px, 3vw, 46px) !important;
    font-weight: 820 !important;
    line-height: 1 !important;
    letter-spacing: -.025em !important;
    font-variant-numeric: tabular-nums;
}

.change {
    margin-top: 0 !important;
    font-size: 13px !important;
    font-weight: 820 !important;
}

/* Tüm piyasalar */

.market-section {
    padding: clamp(70px, 8vw, 128px) 0 !important;
}

.market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(58px, 7vw, 96px) clamp(44px, 6vw, 82px) !important;
}

.market-grid .quote-values strong {
    font-size: clamp(29px, 2.7vw, 40px) !important;
}

/* Hesaplama */

.converter {
    padding: clamp(70px, 8vw, 128px) 0 !important;
}

.converter-form input {
    font-size: clamp(34px, 4.5vw, 58px) !important;
    font-weight: 820 !important;
    letter-spacing: -.035em !important;
}

/* SEO akordeon */

.seo-accordion-section {
    padding: clamp(72px, 8vw, 132px) 0 clamp(70px, 8vw, 126px);
}

.seo-accordion {
    max-width: 860px;
}

.seo-accordion details {
    padding: 0;
    margin: 0 0 clamp(24px, 3vw, 38px);
}

.seo-accordion summary {
    list-style: none;
    cursor: pointer;
    color: var(--navy-deep);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 820;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.seo-accordion summary::-webkit-details-marker {
    display: none;
}

.seo-accordion summary::after {
    content: "+";
    display: inline-block;
    margin-left: 14px;
    color: var(--gold);
    font-weight: 820;
}

.seo-accordion details[open] summary::after {
    content: "−";
}

.accordion-content {
    max-width: 720px;
    padding-top: 18px;
}

.accordion-content p {
    color: var(--muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.78;
    margin: 0;
}

/* Mobil */

@media (max-width: 980px) {
    .market-lead,
    .market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding-top: 28px !important;
        padding-bottom: 42px !important;
    }

    .home-intro h1 {
        font-size: clamp(36px, 10vw, 54px);
        line-height: 1.08;
        letter-spacing: -.03em;
    }

    .home-update {
        margin-top: 20px;
    }

    .market-ticker {
        padding-bottom: 46px !important;
    }

    .ticker-track {
        gap: 42px;
        animation-duration: 34s;
    }

    .market-lead,
    .market-grid {
        grid-template-columns: 1fr !important;
        gap: 54px !important;
    }

    .quote-values strong,
    .quote.featured .quote-values strong,
    .market-grid .quote-values strong {
        font-size: clamp(38px, 11vw, 56px) !important;
    }

    .section-heading.compact-heading h2,
    .section-heading h2,
    .converter h2,
    .seo-accordion-section h2 {
        font-size: clamp(28px, 8vw, 42px) !important;
    }

    .seo-accordion summary {
        font-size: clamp(23px, 7vw, 34px);
    }
}

/* v1.1 — Fi Girişim çatı footer standardı */

.site-footer.roof-footer {
    padding: clamp(64px, 8vw, 118px) 0 42px !important;
    color: #2F3744;
}

.roof-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 34px;
}

.roof-footer-left {
    min-width: 0;
}

.roof-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
}

.roof-footer-logo img {
    width: 85px;
    height: auto;
    display: block;
}

.roof-footer-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 28px;
    max-width: 860px;
}

.roof-footer-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    color: #2F3744;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}

.roof-footer-menu a:hover {
    color: var(--navy);
}

.roof-footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-top: 4px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 820;
}

.roof-footer-social a {
    color: var(--navy);
    text-decoration: none;
    line-height: 1;
}

.roof-footer-social a:hover {
    color: var(--gold);
}

.roof-footer-main {
    max-width: 930px;
}

.roof-footer-main p {
    max-width: 930px;
    margin: 0 0 18px;
    color: #2F3744;
    font-size: 14px;
    line-height: 1.84;
}

.roof-footer-main strong {
    color: #202633;
    font-weight: 820;
}

.roof-footer-main a {
    color: var(--navy);
    font-weight: 820;
    text-decoration: none;
}

.roof-footer-main a:hover {
    color: var(--gold);
}

.roof-footer-line {
    width: 100%;
    height: 1px;
    margin: 24px 0 22px;
    background: #E6EAF0;
}

.roof-footer-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(64px, 8vw, 106px);
}

.roof-footer-signature a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.roof-footer-signature img {
    width: clamp(118px, 12vw, 168px);
    height: auto;
    display: block;
    opacity: .72;
    transition: opacity .2s ease;
}

.roof-footer-signature a:hover img {
    opacity: 1;
}

/* Eski footer elemanlarını bastır */

.footer-brand,
.footer-logo,
.footer-notice,
.footer-links {
    display: none !important;
}

@media (max-width: 780px) {
    .roof-footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .roof-footer-logo img {
        width: 85px;
    }

    .roof-footer-menu {
        gap: 0 20px;
    }

    .roof-footer-menu a {
        font-size: 14px;
    }

    .roof-footer-social {
        justify-content: flex-start;
        gap: 18px;
    }

    .roof-footer-main p {
        font-size: 13.5px;
        line-height: 1.78;
    }

    .roof-footer-signature {
    justify-content: flex-start;
    margin-top: 58px;
}

.roof-footer-signature img {
    width: 136px;
}
}

/* v1.2 — Alt sayfalar fiyat öncelikli yapı */

.detail-hero,
.single-rate,
.content-block.detail-content,
.faq {
    display: none !important;
}

.detail-rate-first {
    padding: clamp(34px, 5vw, 72px) 0 clamp(70px, 8vw, 132px);
}

.detail-rate-title {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: clamp(54px, 7vw, 104px);
}

.detail-rate-title h1 {
    max-width: none;
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(38px, 5vw, 78px);
    font-weight: 820;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.detail-rate-title span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.detail-rate-values {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: start;
    margin-bottom: clamp(66px, 8vw, 122px);
}

.detail-rate-values span {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.detail-rate-values strong {
    display: block;
    color: var(--navy-deep);
    font-size: clamp(52px, 6.8vw, 104px);
    font-weight: 820;
    line-height: .92;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
}

.detail-rate-values .positive,
.detail-rate-values .negative,
.detail-rate-values .neutral {
    font-size: clamp(54px, 6.8vw, 104px);
}

.detail-rate-micro {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 78px);
}

.detail-rate-micro span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.detail-rate-micro strong {
    display: block;
    margin-top: 9px;
    color: var(--navy-deep);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 820;
    letter-spacing: -.025em;
    font-variant-numeric: tabular-nums;
    text-transform: none;
}

.detail-info {
    max-width: 760px;
    padding: clamp(62px, 8vw, 126px) 0 clamp(66px, 8vw, 132px);
}

.detail-info h2 {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--navy-deep);
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 820;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.detail-info p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.78;
}

.detail-related {
    padding: clamp(58px, 7vw, 112px) 0 clamp(66px, 8vw, 126px);
}

.detail-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.detail-accordion-section {
    padding-top: clamp(62px, 8vw, 126px) !important;
}

@media (max-width: 980px) {
    .detail-rate-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-rate-values > div:last-child {
        grid-column: span 2;
    }

    .detail-rate-micro,
    .detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .detail-rate-first {
        padding-top: 30px;
    }

    .detail-rate-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 46px;
    }

    .detail-rate-title h1 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .detail-rate-values {
        grid-template-columns: 1fr;
        gap: 44px;
        margin-bottom: 58px;
    }

    .detail-rate-values > div:last-child {
        grid-column: auto;
    }

    .detail-rate-values strong,
    .detail-rate-values .positive,
    .detail-rate-values .negative,
    .detail-rate-values .neutral {
        font-size: clamp(52px, 16vw, 78px);
    }

    .detail-rate-micro,
    .detail-related-grid {
        grid-template-columns: 1fr !important;
        gap: 34px;
    }
}



.detail-rate-first {
    max-width: 1180px;
    margin: 0 auto;
}

.detail-rate-values {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(28px, 4vw, 64px) !important;
    align-items: start;
}

.detail-rate-values > div {
    min-width: 0;
}

.detail-rate-values strong {
    font-size: clamp(48px, 4.6vw, 78px) !important;
    line-height: .96 !important;
    letter-spacing: -.035em !important;
    white-space: nowrap;
}

.detail-rate-values .positive,
.detail-rate-values .negative,
.detail-rate-values .neutral {
    font-size: clamp(44px, 4.4vw, 74px) !important;
    line-height: .96 !important;
    white-space: nowrap;
}

.detail-rate-values [data-field="change_rate"] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.detail-rate-values [data-field="change_rate"]::first-letter {
    font-size: .9em;
}

/* Çok geniş ekranlarda rakamların gereksiz büyümesini engelle */

@media (min-width: 1280px) {
    .detail-rate-title {
        margin-bottom: 72px !important;
    }

    .detail-rate-values {
        gap: 58px !important;
    }

    .detail-rate-values strong {
        font-size: 76px !important;
    }

    .detail-rate-values .positive,
    .detail-rate-values .negative,
    .detail-rate-values .neutral {
        font-size: 72px !important;
    }
}

/* Orta masaüstü/tablet */

@media (max-width: 1100px) {
    .detail-rate-values {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 46px 58px !important;
    }

    .detail-rate-values > div:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobil */

@media (max-width: 680px) {
    .detail-rate-values {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
    }

    .detail-rate-values > div:last-child {
        grid-column: auto;
    }

    .detail-rate-values strong,
    .detail-rate-values .positive,
    .detail-rate-values .negative,
    .detail-rate-values .neutral {
        font-size: clamp(46px, 14vw, 68px) !important;
    }
}

/* v1.4 — Kurumsal künye sayfası */

.corporate-page {
    max-width: 1120px;
    padding: clamp(42px, 6vw, 86px) 0 clamp(78px, 9vw, 142px);
}

.corporate-page h1 {
    max-width: 760px;
    margin-bottom: clamp(32px, 4vw, 54px);
    color: var(--navy-deep);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.corporate-page h2 {
    max-width: 760px;
    margin-top: clamp(48px, 6vw, 82px);
    margin-bottom: clamp(22px, 3vw, 34px);
    color: var(--navy-deep);
    font-size: clamp(22px, 2.3vw, 34px);
    font-weight: 820;
    line-height: 1.16;
    letter-spacing: -.018em;
    text-transform: uppercase;
}

.corporate-page p {
    max-width: 1080px;
    margin-bottom: 24px;
    color: #2F3744;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.86;
}

.corporate-page strong {
    color: #202633;
    font-weight: 820;
}

.corporate-page a {
    color: var(--navy);
    font-weight: 820;
}

.corporate-info-list {
    display: grid;
    gap: 28px;
    max-width: 980px;
    margin-top: 34px;
}

.corporate-info-list div {
    display: grid;
    gap: 8px;
}

.corporate-info-list strong {
    color: #202633;
    font-size: 15px;
    font-weight: 820;
}

.corporate-info-list span {
    color: #2F3744;
    font-size: 15px;
    line-height: 1.72;
}

@media (max-width: 680px) {
    .corporate-page {
        padding-top: 34px;
    }

    .corporate-page h1 {
        font-size: clamp(32px, 9vw, 46px);
    }

    .corporate-page h2 {
        font-size: clamp(22px, 7vw, 32px);
    }

    .corporate-page p,
    .corporate-info-list span {
        font-size: 14.5px;
        line-height: 1.78;
    }
}

/* v1.5 — Hakkımızda sayfası */

.about-page {
    padding: clamp(42px, 6vw, 86px) 0 clamp(82px, 9vw, 146px);
}

.about-founder {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: start;
    max-width: 1120px;
}

.about-founder-image {
    width: 100%;
    max-width: 360px;
}

.about-founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-founder-content {
    max-width: 780px;
}

.about-founder-content h1 {
    max-width: 720px;
    margin-bottom: clamp(22px, 3vw, 34px);
    color: var(--navy-deep);
    font-size: clamp(32px, 3.8vw, 56px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.founder-title {
    display: grid;
    gap: 5px;
    margin-bottom: 28px;
}

.founder-title strong {
    color: #202633;
    font-size: 17px;
    font-weight: 820;
}

.founder-title span {
    color: #202633;
    font-size: 15px;
    font-weight: 820;
}

.about-founder-content p,
.about-content p {
    max-width: 900px;
    margin-bottom: 24px;
    color: #2F3744;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.86;
}

.about-founder-content strong,
.about-content strong {
    color: #202633;
    font-weight: 820;
}

.about-content {
    max-width: 1080px;
    margin-top: clamp(54px, 7vw, 104px);
}

.about-content h2 {
    max-width: 760px;
    margin-top: clamp(48px, 6vw, 82px);
    margin-bottom: clamp(22px, 3vw, 34px);
    color: var(--navy-deep);
    font-size: clamp(22px, 2.3vw, 34px);
    font-weight: 820;
    line-height: 1.16;
    letter-spacing: -.018em;
}

@media (max-width: 820px) {
    .about-founder {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-founder-image {
        max-width: 320px;
    }
}

@media (max-width: 680px) {
    .about-page {
        padding-top: 34px;
    }

    .about-founder-content h1 {
        font-size: clamp(32px, 9vw, 46px);
    }

    .about-founder-content p,
    .about-content p {
        font-size: 14.5px;
        line-height: 1.78;
    }

    .about-content h2 {
        font-size: clamp(22px, 7vw, 32px);
    }
}

/* v1.6 — Kullanım şartları sayfası */

.legal-page h2 {
    text-transform: none !important;
}

.legal-page p {
    max-width: 1040px;
}

.legal-page h2 {
    text-transform: none !important;
}

.legal-page p {
    max-width: 1040px;
}



.calculator-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: clamp(44px, 7vw, 112px);
    align-items: center;
    padding: clamp(46px, 6vw, 92px) 0 clamp(72px, 8vw, 138px);
}

.calculator-page-copy {
    max-width: 720px;
}

.calculator-page-copy h1 {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--navy-deep);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.calculator-page-copy p {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.78;
}

.calculator-page-form {
    display: grid;
    gap: 18px;
}

.calculator-page-form label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.calculator-page-form input {
    width: 100%;
    appearance: textfield;
    border: 0;
    outline: 0;
    padding: 0;
    background: #FFFFFF;
    color: var(--navy-deep);
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -.045em;
}

.calculator-page-form input::placeholder {
    color: #CBD5E1;
}

.calculator-page-form output {
    color: var(--navy);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 820;
    line-height: 1.45;
}

.calculator-info {
    max-width: 840px;
    padding: clamp(62px, 8vw, 126px) 0 clamp(58px, 7vw, 112px);
}

.calculator-info h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--navy-deep);
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 820;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.calculator-info p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.78;
}

.calculator-popular {
    padding-top: clamp(56px, 7vw, 108px);
}

.calculator-accordion-section {
    padding-top: clamp(62px, 8vw, 126px) !important;
}

@media (max-width: 900px) {
    .calculator-page-hero {
        grid-template-columns: 1fr;
        gap: 46px;
    }
}

@media (max-width: 680px) {
    .calculator-page-hero {
        padding-top: 34px;
    }

    .calculator-page-copy h1 {
        font-size: clamp(32px, 9vw, 48px);
    }

    .calculator-page-form input {
        font-size: clamp(48px, 15vw, 76px);
    }
}

/* v1.8 — İletişim sayfası */

.contact-page {
    padding: clamp(42px, 6vw, 86px) 0 clamp(82px, 9vw, 146px);
}

.contact-hero {
    max-width: 860px;
    margin-bottom: clamp(54px, 7vw, 104px);
}

.contact-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--navy-deep);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.contact-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.55vw, 21px);
    line-height: 1.78;
}

.contact-mail-block {
    max-width: 980px;
    margin-bottom: clamp(70px, 8vw, 126px);
}

.contact-mail-block span {
    display: block;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-mail-block a {
    display: inline-block;
    color: var(--navy-deep);
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -.045em;
    word-break: break-word;
}

.contact-mail-block p {
    max-width: 760px;
    margin: clamp(24px, 3vw, 38px) 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.78;
}

.contact-content {
    max-width: 1040px;
}

.contact-content h2 {
    max-width: 760px;
    margin-top: clamp(46px, 6vw, 78px);
    margin-bottom: 20px;
    color: var(--navy-deep);
    font-size: clamp(24px, 2.6vw, 38px);
    font-weight: 820;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.contact-content p {
    max-width: 980px;
    margin-bottom: 24px;
    color: #2F3744;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.86;
}

.contact-content strong {
    color: #202633;
    font-weight: 820;
}

@media (max-width: 680px) {
    .contact-page {
        padding-top: 34px;
    }

    .contact-hero h1 {
        font-size: clamp(32px, 9vw, 46px);
    }

    .contact-mail-block a {
        font-size: clamp(30px, 9vw, 46px);
    }

    .contact-content p {
        font-size: 14.5px;
        line-height: 1.78;
    }
}



.site-header {
    position: relative;
    overflow: visible !important;
    z-index: 120;
}

.page-shell,
.site-nav,
.nav {
    overflow: visible !important;
}

.site-nav {
    position: relative;
}



.nav a.active {
    color: var(--navy);
}



.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    color: var(--muted);
    font-size: 14px;
    letter-spacing: .01em;
    user-select: none;
    transition: color .2s ease;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
    color: var(--navy);
}

/* Masaüstü küçük ok */

.nav-dropdown-label::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .72;
}

/* Mobil kategori ikonu */

.nav-dropdown-icon {
    display: none;
    width: 22px;
    height: 22px;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.nav-dropdown-icon i {
    display: block;
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 2px;
    opacity: .78;
}

/* Menü açıkken arka plan karartma */

.nav-dropdown[open]::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(7, 21, 45, .34);
    backdrop-filter: blur(2px);
}

/* Masaüstü panel */

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 140;
    width: min(780px, calc(100vw - 48px));
    padding: 34px 38px 36px;
    background: #FFFFFF;
}

.nav-dropdown-head {
    display: grid;
    gap: 6px;
    margin-bottom: 30px;
}

.nav-dropdown-head strong {
    color: var(--navy-deep);
    font-size: 24px;
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.nav-dropdown-head small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nav-dropdown-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 34px;
}

.nav-dropdown-list a {
    display: grid;
    gap: 5px;
    padding: 0;
    color: var(--navy-deep);
}

.nav-dropdown-list a span {
    color: var(--navy-deep);
    font-size: 15px;
    font-weight: 820;
    line-height: 1.2;
    letter-spacing: -.018em;
}

.nav-dropdown-list a small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-dropdown-list a:hover span,
.nav-dropdown-list a.active span {
    color: var(--navy);
}

/* Mobil */

@media (max-width: 780px) {
    .site-header {
        align-items: center !important;
        flex-direction: row !important;
        gap: 24px;
    }

    .site-nav {
        width: auto;
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        padding-bottom: 0;
    }

    .site-nav > a:nth-of-type(3),
    .site-nav > a:nth-of-type(4) {
        display: none;
    }

    .nav-dropdown {
        position: static;
    }

    .nav-dropdown-label {
        display: none;
    }

    .nav-dropdown-label::after {
        display: none;
    }

    .nav-dropdown-icon {
        display: grid;
    }

    .nav-dropdown summary {
        padding: 8px 0;
        color: var(--navy);
    }

    .nav-dropdown[open]::before {
        background: rgba(7, 21, 45, .42);
        backdrop-filter: blur(2px);
    }

    .nav-dropdown-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 140;
        width: min(86vw, 390px);
        max-width: 390px;
        padding: 34px 28px 44px;
        overflow-y: auto;
        background: #FFFFFF;
        transform: translateX(0);
        animation: altinfiMobileMenuIn .22s ease-out;
    }

    .nav-dropdown-head {
        margin-bottom: 32px;
    }

    .nav-dropdown-head strong {
        font-size: 28px;
    }

    .nav-dropdown-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nav-dropdown-list a span {
        font-size: 18px;
        letter-spacing: -.025em;
    }

    .nav-dropdown-list a small {
        font-size: 10px;
    }
}

@media (max-width: 520px) {
    .site-nav {
        gap: 16px;
    }

    .site-nav > a {
        font-size: 13px;
    }

    .brand img {
        width: 85px;
    }

    .nav-dropdown-panel {
        width: min(90vw, 380px);
        padding: 32px 24px 42px;
    }
}

@keyframes altinfiMobileMenuIn {
    from {
        transform: translateX(24px);
        opacity: .4;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-dropdown-label-mobile {
    display: none;
}

@media (max-width: 780px) {
    .nav-dropdown summary {
        gap: 8px;
    }

    .nav-dropdown-label-desktop {
        display: none !important;
    }

    .nav-dropdown-label-mobile {
        display: inline-flex;
        color: var(--navy);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: .01em;
    }

    .nav-dropdown-icon {
        display: grid;
        width: 20px;
        height: 20px;
        gap: 4px;
    }

    .nav-dropdown-icon i {
        width: 6px;
        height: 6px;
    }
}



.nav-dropdown[open]::before {
    cursor: pointer;
}