.feature-cards-section {
    --acc: #F7B500;
}

/* Tam genişlik (brandslider mantığı: dış div tam genişlik, kartlar container içinde) */
.feature-cards-section.fw {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

/* Kart ızgarası — sütun sayısı ayardan (mobil / tablet / masaüstü) */
.ftc-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(var(--fc-cols-m, 2), minmax(0, 1fr));
}

@media (min-width: 768px) {
    .ftc-grid {
        grid-template-columns: repeat(var(--fc-cols-t, 3), minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .ftc-grid {
        grid-template-columns: repeat(var(--fc-cols-d, 4), minmax(0, 1fr));
    }
}

.fc2 {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    transition: transform .2s ease, box-shadow .2s ease;
}

.fc2 i {
    line-height: 1;
}

.fc2 .eye {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.fc2 .ttl {
    font-weight: 800;
    text-transform: uppercase;
}

.fc2 .sub {
    font-weight: 500;
}

/* 3c — Filigran */
.t-3c {
    background: var(--fc-card-bg, #fff);
    border-radius: var(--fc-radius, 12px);
    padding: 26px 22px;
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.t-3c .ghost {
    position: absolute;
    right: -18px;
    bottom: -22px;
    color: color-mix(in srgb, var(--acc) 16%, transparent);
    transform: rotate(-10deg);
    font-size: calc(var(--fc-icon-size, 30px) * 3.6);
}

.t-3c .row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-3c .row i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 30px);
}

.t-3c .ttl {
    font-size: var(--fc-title-size, 19px);
    color: var(--fc-title-color, #111);
    letter-spacing: .3px;
}

.t-3c .sub {
    position: relative;
    font-size: var(--fc-sub-size, 14px);
    color: var(--fc-sub-color, #6a6a6a);
}

/* 2a — Taktik Koyu */
.t-2a {
    background: var(--fc-card-bg, linear-gradient(160deg, #1d1d1d, #101010));
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    padding: 24px 22px 22px;
    flex-direction: column;
    gap: 16px;
}

.t-2a .corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: var(--acc);
}

.t-2a .glow {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, color-mix(in srgb, var(--acc) 14%, transparent), transparent 70%);
}

.t-2a .num {
    position: absolute;
    right: 14px;
    bottom: 6px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    letter-spacing: 1px;
}

.t-2a .top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.t-2a .box {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--acc) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--acc) 45%, transparent);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-2a .box i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 24px);
}

.t-2a .eye {
    font-size: 10px;
    letter-spacing: 2px;
    color: color-mix(in srgb, var(--acc) 70%, transparent);
    border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
    padding: 3px 8px;
}

.t-2a .txt {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.t-2a .ttl {
    font-size: var(--fc-title-size, 18px);
    color: var(--fc-title-color, #fff);
    letter-spacing: .5px;
}

.t-2a .bar {
    width: 30px;
    height: 3px;
    background: var(--acc);
}

.t-2a .sub {
    font-size: var(--fc-sub-size, 13.5px);
    color: var(--fc-sub-color, #9a9a9a);
    margin-top: 2px;
}

/* 2b — Premium Beyaz */
.t-2b {
    background: var(--fc-card-bg, #fff);
    border-radius: var(--fc-radius, 12px);
    padding: 0;
    flex-direction: column;
}

.t-2b .head {
    background: #111;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.t-2b .head .deco {
    position: absolute;
    right: -18px;
    top: -20px;
    width: 90px;
    height: 90px;
    background: var(--acc);
    transform: rotate(45deg);
    opacity: .12;
}

.t-2b .plate {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--acc);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-2b .plate i {
    color: #111;
    font-size: var(--fc-icon-size, 24px);
}

.t-2b .num {
    font-size: 26px;
    font-weight: 800;
    color: rgba(255, 255, 255, .16);
}

.t-2b .body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t-2b .eye {
    font-size: 11px;
    letter-spacing: 1.4px;
    color: color-mix(in srgb, var(--acc) 78%, #000);
}

.t-2b .ttl {
    font-size: var(--fc-title-size, 18px);
    color: var(--fc-title-color, #111);
    text-transform: none;
}

.t-2b .sub {
    font-size: var(--fc-sub-size, 14px);
    color: var(--fc-sub-color, #6a6a6a);
}

/* 2c — Sarı Bant (grup zemini) */
.t-2c {
    background: var(--fc-card-bg, #141414);
    border-radius: var(--fc-radius, 10px);
    padding: 22px 20px;
    flex-direction: column;
    gap: 12px;
}

.t-2c .top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-2c .top i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 28px);
}

.t-2c .line {
    flex: 1;
    height: 1px;
    background: color-mix(in srgb, var(--acc) 20%, transparent);
}

.t-2c .num {
    font-size: 12px;
    font-weight: 800;
    color: color-mix(in srgb, var(--acc) 55%, transparent);
}

.t-2c .txt {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t-2c .ttl {
    font-size: var(--fc-title-size, 17px);
    color: var(--fc-title-color, #fff);
    letter-spacing: .4px;
}

.t-2c .sub {
    font-size: var(--fc-sub-size, 13.5px);
    color: var(--fc-sub-color, #a8a8a8);
}

/* 1a — Vurgu Çizgili (grup: beyaz panel) */
.grp-1a .ftc-grid {
    gap: 20px;
}

.t-1a {
    background: var(--fc-card-bg, #fff);
    border-radius: var(--fc-radius, 10px);
    padding: 24px 22px 22px;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.t-1a .barleft {
	position: absolute;
	right: -12px;
	top: 0;
	bottom: 0;
	width: 20px;
	background: linear-gradient(180deg, var(--acc), color-mix(in srgb, var(--acc) 78%, #000));
}

.t-1a .plate {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-1a .plate i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 26px);
}

.t-1a .txt {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}

.t-1a .eye {
    font-size: 11px;
    letter-spacing: 1.4px;
    color: color-mix(in srgb, var(--acc) 78%, #000);
}

.t-1a .ttl {
    font-size: var(--fc-title-size, 18px);
    color: var(--fc-title-color, #111);
    letter-spacing: .2px;
    text-transform: none;
}

.t-1a .sub {
    font-size: var(--fc-sub-size, 14px);
    color: var(--fc-sub-color, #6a6a6a);
}

/* 1b — Koyu Şerit (grup: koyu şerit, 1px ayraç) */
.grp-1b {
    background: linear-gradient(135deg, #161616, #232323);
    border-radius: var(--fc-radius, 8px);
    padding: 6px;
}

.grp-1b .ftc-grid {
    gap: 1px;
    background: rgba(255, 255, 255, .10);
}

.t-1b {
    background: var(--fc-card-bg, #1a1a1a);
    padding: 26px 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.t-1b .circle {
    flex: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--acc) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-1b .circle i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 26px);
}

.t-1b .txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t-1b .ttl {
    font-size: var(--fc-title-size, 17px);
    color: var(--fc-title-color, #fff);
    letter-spacing: .3px;
}

.t-1b .sub {
    font-size: var(--fc-sub-size, 13.5px);
    color: var(--fc-sub-color, #b5b5b5);
}

/* 1c — Sade Panel (grup: açık panel, üst accent şerit, 1px ayraç) */
.grp-1c {
	background: #ececec;
	border: 1px solid #e4e4e4;
	border-radius: var(--fc-radius, 8px);
	overflow: hidden;
}

.grp-1c .ftc-grid {
    gap: 1px;
}

.t-1c {
    background: var(--fc-card-bg, #fff);
    padding: 28px 26px;
    flex-direction: column;
    gap: 14px;
}

.t-1c .top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-1c .top i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 28px);
}

.t-1c .line {
    width: 100%;
    height: 2px;
    background: color-mix(in srgb, var(--acc) 20%, transparent);
}



.t-1c .txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.t-1c .ttl {
    font-size: var(--fc-title-size, 18px);
    color: var(--fc-title-color, #111);
    text-transform: none;
}

.t-1c .sub {
    font-size: var(--fc-sub-size, 14px);
    color: var(--fc-sub-color, #6a6a6a);
}

/* 5b — Sade Ortalanmış */
.t-5b {
    background: var(--fc-card-bg, #f5f5f5);
    border-radius: var(--fc-radius, 10px);
    padding: 26px 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.t-5b i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 34px);
}

.t-5b .ttl {
    font-size: var(--fc-title-size, 19px);
    color: var(--fc-title-color, #111);
    letter-spacing: .2px;
    text-transform: none;
}

.t-5b .sub {
    font-size: var(--fc-sub-size, 14px);
    color: var(--fc-sub-color, #6a6a6a);
}

/* 5a — Taşan Yuvarlak Rozet */
.t-5a {
    background: var(--fc-card-bg, #fff);
    border: 1px solid #ececec;
    border-radius: var(--fc-radius, 14px);
    padding: 40px 24px 26px;
    margin-top: 38px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(17, 17, 17, .05);
}

.t-5a .badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #fff, 0 0 0 8px color-mix(in srgb, var(--acc) 90%, transparent), 0 8px 18px rgba(17, 17, 17, .25);
}

.t-5a .badge i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 30px);
}

.t-5a .ttl {
    font-size: var(--fc-title-size, 19px);
    color: var(--fc-title-color, #111);
    letter-spacing: .2px;
    text-transform: none;
    margin-top: 4px;
}

.t-5a .bar {
    width: 28px;
    height: 3px;
    background: var(--acc);
    border-radius: 2px;
    margin: 4px 0 2px;
}

.t-5a .sub {
    font-size: var(--fc-sub-size, 14px);
    color: var(--fc-sub-color, #6a6a6a);
}

/* Görsel/SVG ikon yerine (öncelik görsel) — tüm temalar */
.fc-img {
    display: block;
    width: var(--fc-icon-size, 30px);
    height: var(--fc-icon-size, 30px);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 6a — Rozet Yatık */
.t-6a {
    background: var(--fc-card-bg, #fff);
    border: 1px solid #e7e9ee;
    border-radius: var(--fc-radius, 12px);
    padding: 16px 18px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.t-6a .badge {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--acc) 16%, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-6a .badge i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 24px);
}

.t-6a .txt {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.t-6a .ttl {
    font-size: var(--fc-title-size, 15px);
    color: var(--fc-title-color, #1c1f26);
    font-weight: 600;
    text-transform: none;
}

.t-6a .sub {
    font-size: var(--fc-sub-size, 12.5px);
    color: var(--fc-sub-color, #8a8f99);
}

/* 6b — Rozet Şerit (gruplu, ayraçlı) */
.grp-6b {
    background: #e7e9ee;
    border: 1px solid #e7e9ee;
    border-radius: var(--fc-radius, 12px);
    overflow: hidden;
}

.grp-6b .ftc-grid {
    gap: 1px;
}

.t-6b {
    background: var(--fc-card-bg, #fff);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
}

.t-6b i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 22px);
}

.t-6b .ttl {
    font-size: var(--fc-title-size, 14.5px);
    color: var(--fc-title-color, #1c1f26);
    font-weight: 500;
    text-transform: none;
}

/* 6c — Rozet İkon (sadece ikon + etiket) */
.t-6c {
    background: transparent;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.t-6c .box {
    width: 54px;
    height: 54px;
    border-radius: var(--fc-radius, 14px);
    border: 1.5px solid #e2e5ea;
    background: var(--fc-card-bg, #fbfbfc);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-6c .box i {
    color: var(--acc);
    font-size: var(--fc-icon-size, 24px);
}

.t-6c .ttl {
    font-size: var(--fc-title-size, 11px);
    color: var(--fc-sub-color, #8a8f99);
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
}