/* 
 * Toygun TDX Corporate - Hakkımızda CSS 
 * Kapsam: Yalnızca .tdx-page ve .tdx-global-footer 
 */

:root {
    --tdx-navy: #182538;
    --tdx-navy-deep: #0A1627;
    --tdx-blue-gray: #41556D;
    --tdx-bg-light: #F5F7FA;
    --tdx-surface-alt: #EAF0F5;
    --tdx-text-main: #132033;
    --tdx-text-secondary: #5B6978;
    --tdx-border: #D8E0E7;
    --tdx-accent: #f47a32;
    --tdx-focus: #2B6DE9;

    --tdx-container: min(1320px, calc(100% - 48px));
    --tdx-section-pad-y: clamp(60px, 6vw, 100px);
    --tdx-radius-sm: 8px;
    --tdx-radius-lg: 24px;

    /* System Fonts */
    --tdx-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --tdx-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tdx-page {
    font-family: var(--tdx-font-body);
    color: var(--tdx-text-main);
    background: #fff;
    overflow-x: clip;
    line-height: 1.65;
}

.tdx-page *,
.tdx-page *::before,
.tdx-page *::after {
    box-sizing: border-box;
}

.tdx-container {
    width: var(--tdx-container);
    margin: 0 auto;
}

.tdx-page h1,
.tdx-page h2,
.tdx-page h3,
.tdx-page h4 {
    font-family: var(--tdx-font-heading);
    color: var(--tdx-navy-deep);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.tdx-page p {
    margin: 0;
    color: var(--tdx-text-secondary);
}

.tdx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tdx-accent);
    margin-bottom: 24px;
}

.tdx-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--tdx-accent);
}

.tdx-section-title {
    font-size: clamp(32px, 3.5vw, 42px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.tdx-text-margin {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--tdx-text-main);
}

/* Breadcrumb */
.tdx-breadcrumb {
    padding: 24px 0;
    font-size: 14px;
    color: var(--tdx-blue-gray);
    display: flex;
    gap: 8px;
    align-items: center;
}

.tdx-breadcrumb a {
    color: var(--tdx-text-secondary);
    text-decoration: none;
}

.tdx-breadcrumb-sep {
    opacity: 0.5;
}

/* Buttons and Links */
.tdx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    background: var(--tdx-navy);
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--tdx-radius-sm);
    text-decoration: none;
    border: 1px solid var(--tdx-navy);
    transition: background 0.18s ease;
}

.tdx-btn:hover {
    background: var(--tdx-navy-deep);
}

.tdx-link-text {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: var(--tdx-blue-gray);
    text-decoration: underline;
    font-weight: 500;
    padding: 10px 0;
}

.tdx-link-text:hover {
    color: var(--tdx-navy-deep);
}

/* Focus */
.tdx-page a:focus-visible,
.tdx-page button:focus-visible {
    outline: 2px solid var(--tdx-focus);
    outline-offset: 4px;
}

/* Hero */
.tdx-hero-corporate {
    padding: 20px 0 80px;
}

.tdx-hero-corporate .tdx-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tdx-hero-title {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 800;
    text-wrap: balance;
    margin-bottom: 24px;
    color: var(--tdx-navy-deep);
}

.tdx-hero-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--tdx-text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.tdx-hero-image {
    border-radius: var(--tdx-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/11;
    background: var(--tdx-surface-alt);
}

.tdx-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning */
.tdx-positioning {
    background: var(--tdx-navy-deep);
    color: #fff;
    padding: var(--tdx-section-pad-y) 0;
    text-align: center;
}

.tdx-positioning__quote {
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.35;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

/* Approach */
.tdx-approach {
    padding: var(--tdx-section-pad-y) 0;
    background: var(--tdx-bg-light);
}

.tdx-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.tdx-approach__principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tdx-principle-item {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--tdx-border);
}

.tdx-principle-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

/* Second Visual Block */
.tdx-visual-section {
    padding: 0 0 var(--tdx-section-pad-y);
    background: var(--tdx-bg-light);
}

.tdx-visual-wrapper {
    border-radius: var(--tdx-radius-lg);
    overflow: hidden;
    aspect-ratio: 21/9;
}

.tdx-visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Methodology - Editorial 4 steps */
.tdx-methodology {
    padding: var(--tdx-section-pad-y) 0;
    background: #fff;
}

.tdx-methodology-header {
    margin-bottom: 60px;
}

.tdx-methodology-header p {
    font-size: 18px;
    max-width: 600px;
}

/* List styled as editorial rows with thin borders */
.tdx-ed-step-list {
    display: flex;
    flex-direction: column;
}

.tdx-ed-step-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--tdx-border);
}

.tdx-ed-step-item:last-child {
    border-bottom: 1px solid var(--tdx-border);
}

.tdx-ed-step-num {
    font-family: var(--tdx-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--tdx-accent);
}

.tdx-ed-step-title {
    font-size: 24px;
    color: var(--tdx-navy-deep);
}

/* Step details grid */
.tdx-ed-step-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tdx-ed-step-details div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    font-size: 15px;
}

.tdx-ed-step-details strong {
    color: var(--tdx-navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Final CTA */
.tdx-final-cta {
    padding: var(--tdx-section-pad-y) 0;
    background: var(--tdx-surface-alt);
    text-align: center;
}

.tdx-final-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.tdx-final-cta__inner h2 {
    margin-bottom: 24px;
}

.tdx-final-cta__inner p {
    margin-bottom: 32px;
    font-size: 17px;
}

.tdx-final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .tdx-hero-corporate .tdx-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tdx-approach-grid {
        grid-template-columns: 1fr;
    }

    .tdx-ed-step-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tdx-hero-image,
    .tdx-visual-wrapper {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    .tdx-ed-step-details div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tdx-hero-image,
    .tdx-visual-wrapper {
        aspect-ratio: 4/3;
    }
}

/* =========================================================
 * Toygun TDX Corporate - Hizmetler CSS
 * Kapsam: Yalnızca .tdx-page--hizmetler içi
 * DURUM: YENİ TASARIM - ONAY BEKLİYOR (canlıya uygulanmadı)
 * ========================================================= */

/* Premium mikro-hareket: sakin fade-up girişi (yalnızca .tdx-page--hizmetler) */
@keyframes tdxHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Hero — iki kolonlu editoryal yapı (sol: metin, sağ: grup özeti) */
.tdx-services-hero {
    padding: 20px 0 64px;
}

.tdx-services-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 1fr);
    gap: 64px;
    align-items: start;
}

.tdx-services-hero__copy {
    max-width: 640px;
    animation: tdxHeroFadeUp 380ms ease-out both;
}

.tdx-services-hero .tdx-hero-lead {
    max-width: 100%;
    margin-bottom: 0;
}

.tdx-services-hero__overview {
    padding-top: 8px;
}

.tdx-services-hero__overview-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tdx-services-hero__overview-list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 0;
    border-top: 1px solid var(--tdx-border);
    animation: tdxHeroFadeUp 380ms ease-out both;
    animation-delay: 80ms;
}

.tdx-services-hero__overview-list li:nth-child(2) {
    animation-delay: 140ms;
}

.tdx-services-hero__overview-list li:nth-child(3) {
    animation-delay: 200ms;
}

.tdx-services-hero__overview-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.tdx-services-hero__overview-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--tdx-navy-deep);
}

.tdx-services-hero__overview-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--tdx-text-secondary);
}

/* Kısa konumlandırma paragrafı */
.tdx-services-intro {
    padding: 0 0 var(--tdx-section-pad-y);
    background: #fff;
}

.tdx-services-intro__inner {
    max-width: 760px;
}

.tdx-services-intro h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.3;
    margin-bottom: 16px;
}

.tdx-services-intro p {
    font-size: 16px;
}

/* Hizmet grubu blokları (paylaşılan yapı) */
.tdx-group-section {
    padding: var(--tdx-section-pad-y) 0;
    border-top: 1px solid var(--tdx-border);
}

.tdx-group-section .tdx-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tdx-group-section--reverse .tdx-container {
    direction: rtl;
}

.tdx-group-section--reverse .tdx-container>* {
    direction: ltr;
}

/* Görselsiz grup için tek kolonlu, sade editoryal yerleşim (Hibe & Teşvik) */
.tdx-group-section--solo .tdx-container {
    grid-template-columns: 1fr;
    max-width: 860px;
}

.tdx-group-label {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tdx-accent);
    margin-bottom: 16px;
}

.tdx-group-content h2 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.tdx-group-content>p {
    font-size: 16px;
    margin-bottom: 32px;
}

.tdx-group-media {
    position: relative;
    border-radius: var(--tdx-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--tdx-surface-alt);
}

.tdx-group-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tdx-group-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 35, 59, 0) 55%, rgba(16, 35, 59, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tdx-group-links {
    display: flex;
    flex-direction: column;
}

/* Blog kart grid (Bilgi Merkezi / Blog dizin sayfası) */
.tdx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.tdx-blog-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--tdx-border);
    border-radius: var(--tdx-radius-lg);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tdx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(16, 35, 59, .1);
}

.tdx-blog-card h2 {
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 12px;
    color: var(--tdx-navy-deep);
}

.tdx-blog-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--tdx-text-secondary);
    margin: 0 0 24px;
    flex-grow: 1;
}

.tdx-blog-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tdx-accent);
    text-decoration: none;
}

@media (max-width: 900px) {
    .tdx-blog-grid {
        grid-template-columns: 1fr;
    }
}

.tdx-group-links a {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--tdx-border);
    color: var(--tdx-text-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: padding-left 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.tdx-group-links a:last-child {
    border-bottom: 1px solid var(--tdx-border);
}

.tdx-group-links a:focus-visible {
    padding-left: 6px;
    color: var(--tdx-navy);
    background-color: var(--tdx-bg-light);
}

.tdx-group-links .tdx-group-link-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--tdx-accent);
    transition: color 0.2s ease;
}

.tdx-group-links a:focus-visible .tdx-group-link-num {
    color: var(--tdx-navy-deep);
}

.tdx-group-links .tdx-group-link-arrow {
    color: var(--tdx-blue-gray);
    transition: transform 0.18s ease;
}

.tdx-group-links a:focus-visible .tdx-group-link-arrow {
    transform: translateX(4px);
}

/* İnce yatay süreç şeridi */
.tdx-process-strip {
    padding: var(--tdx-section-pad-y) 0;
    background: var(--tdx-bg-light);
    border-top: 1px solid var(--tdx-border);
}

.tdx-process-strip__header {
    margin-bottom: 40px;
    max-width: 640px;
}

.tdx-process-strip__header .tdx-section-title {
    margin-bottom: 0;
}

/* Editoryal dikey liste — büyük numara + başlık + kısa açıklama, ince çizgilerle ayrılmış */
.tdx-process-strip__list {
    display: flex;
    flex-direction: column;
}

.tdx-process-strip__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: baseline;
    padding: 28px 0;
    border-top: 1px solid var(--tdx-border);
    transition: border-color 0.25s ease;
}

.tdx-process-strip__item:last-child {
    border-bottom: 1px solid var(--tdx-border);
}

.tdx-process-strip__num {
    font-family: var(--tdx-font-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--tdx-accent);
    transition: color 0.25s ease;
}

.tdx-process-strip__item>div {
    transition: transform 0.25s ease;
}

.tdx-process-strip__item strong {
    display: block;
    font-size: 17px;
    color: var(--tdx-navy-deep);
    margin-bottom: 6px;
}

.tdx-process-strip__item span {
    font-size: 14px;
    color: var(--tdx-text-secondary);
    line-height: 1.5;
}

/* CTA butonu — premium hover (yalnızca Hizmetler sayfası kapsamında) */
.tdx-page--hizmetler .tdx-btn {
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tdx-page--hizmetler .tdx-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 35, 59, 0.16);
}

/* Yalnızca fare/hassas pointer cihazları — dokunmatik cihazlarda kalıcı
   hover oluşmaması için hover mikro hareketleri bu blokla sınırlıdır.
   focus-visible kuralları bu bloğun dışında, her zaman aktiftir. */
@media (hover: hover) and (pointer: fine) {
    .tdx-group-media:hover img {
        transform: scale(1.03);
    }

    .tdx-group-media:hover::after {
        opacity: 1;
    }

    .tdx-group-links a:hover {
        padding-left: 6px;
        color: var(--tdx-navy);
        background-color: var(--tdx-bg-light);
    }

    .tdx-group-links a:hover .tdx-group-link-num {
        color: var(--tdx-navy-deep);
    }

    .tdx-group-links a:hover .tdx-group-link-arrow {
        transform: translateX(4px);
    }

    .tdx-process-strip__item:hover {
        border-top-color: var(--tdx-accent);
    }

    .tdx-process-strip__item:hover .tdx-process-strip__num {
        color: var(--tdx-navy-deep);
    }

    .tdx-process-strip__item:hover>div {
        transform: translateX(4px);
    }

    .tdx-page--hizmetler .tdx-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(16, 35, 59, 0.16);
    }
}

/* Responsive - Hizmetler */
@media (max-width: 1024px) {
    .tdx-services-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tdx-group-section .tdx-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tdx-group-section--reverse .tdx-container {
        direction: ltr;
    }

    .tdx-group-media {
        aspect-ratio: 16/9;
    }
}

/* =========================================================
 * Toygun TDX Corporate - Tekil Hizmet Sayfası (Servis Detayı)
 * Kapsam: Yalnızca .tdx-page--tubitak içi
 * DURUM: ONAYLANDI - 7'li tdx-svc-v1 grubunun ilk sayfası (TÜBİTAK TEYDEB)
 * ========================================================= */

.tdx-service-hero {
    padding: 20px 0 0;
}

.tdx-service-hero__copy {
    max-width: 760px;
    animation: tdxHeroFadeUp 380ms ease-out both;
}

.tdx-service-hero .tdx-hero-lead {
    max-width: 100%;
}

.tdx-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.tdx-btn--outline {
    background: transparent;
    color: var(--tdx-navy) !important;
    border: 1px solid var(--tdx-border);
}

/* Güven şeridi — kart/ikon yerine ince, yatay metin şeridi */
.tdx-trust-line {
    padding: 40px 0;
    border-top: 1px solid var(--tdx-border);
    margin-top: 40px;
    background: var(--tdx-bg-light);
}

.tdx-trust-line__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tdx-trust-line__grid div {
    padding-left: 20px;
    border-left: 2px solid var(--tdx-accent);
}

.tdx-trust-line__grid strong {
    display: block;
    font-size: 14px;
    color: var(--tdx-navy-deep);
    margin-bottom: 4px;
}

.tdx-trust-line__grid span {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--tdx-text-secondary);
}

/* Not kutusu (uyarı/prensip vurgusu) */
.tdx-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 3px solid var(--tdx-accent);
    background: var(--tdx-bg-light);
    color: var(--tdx-text-main);
    font-size: 14px;
    line-height: 1.65;
}

.tdx-note strong {
    color: var(--tdx-navy-deep);
}

/* Yan panel (Proje omurgası gibi kısa referans listeleri) */
.tdx-side-panel {
    padding: 32px;
    border: 1px solid var(--tdx-border);
    border-radius: var(--tdx-radius-lg);
    background: var(--tdx-bg-light);
    align-self: start;
}

.tdx-side-panel h3 {
    font-size: 17px;
    margin-bottom: 16px;
}

.tdx-side-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tdx-side-panel li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tdx-text-secondary);
}

.tdx-side-panel li strong {
    color: var(--tdx-navy-deep);
}

.tdx-group-section--panel .tdx-container {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .9fr);
    align-items: start;
}

/* Koyu risk/uyarı bölümü — process-strip ile aynı yapı, koyu zemin */
.tdx-process-strip--dark {
    background: var(--tdx-navy-deep);
    border-top: 0;
}

.tdx-process-strip--dark .tdx-eyebrow {
    color: #E8A863;
}

.tdx-process-strip--dark .tdx-section-title,
.tdx-process-strip--dark .tdx-process-strip__item strong {
    color: #fff;
}

.tdx-process-strip--dark .tdx-process-strip__item {
    border-top-color: rgba(255, 255, 255, .14);
}

.tdx-process-strip--dark .tdx-process-strip__item:last-child {
    border-bottom-color: rgba(255, 255, 255, .14);
}

.tdx-process-strip--dark .tdx-process-strip__item span {
    color: rgba(255, 255, 255, .6);
}

.tdx-process-strip--dark .tdx-process-strip__num {
    color: #E8A863;
}

/* SSS */
.tdx-faq {
    display: flex;
    flex-direction: column;
}

.tdx-faq details {
    padding: 22px 0;
    border-top: 1px solid var(--tdx-border);
}

.tdx-faq details:last-child {
    border-bottom: 1px solid var(--tdx-border);
}

.tdx-faq summary {
    font-size: 16px;
    font-weight: 700;
    color: var(--tdx-navy-deep);
    cursor: pointer;
    list-style: none;
}

.tdx-faq summary::-webkit-details-marker {
    display: none;
}

.tdx-faq summary::after {
    content: '+';
    float: right;
    color: var(--tdx-accent);
    font-weight: 400;
}

.tdx-faq details[open] summary::after {
    content: '−';
}

.tdx-faq p {
    margin-top: 14px;
    font-size: 14.5px;
    max-width: 760px;
}

/* Son CTA — iki buton + düz metin iletişim satırı */
.tdx-final-cta__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-top: 28px;
    font-size: 14px;
}

.tdx-final-cta__contact a {
    color: var(--tdx-navy);
    font-weight: 600;
    text-decoration: underline;
}

.tdx-final-cta__disclaimer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--tdx-text-secondary);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

@media (hover: hover) and (pointer: fine) {
    .tdx-btn--outline:hover {
        background: var(--tdx-bg-light);
    }
}

@media (max-width: 1024px) {
    .tdx-trust-line__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tdx-group-section--panel .tdx-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tdx-trust-line__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
 * Toygun TDX Corporate - Tekil Hizmet Sayfası (ek bileşenler)
 * Kapsam: paylaşımlı, tüm hizmet detay sayfaları
 * ========================================================= */

/* İki sütunlu karşılaştırma (ör. Ar-Ge Merkezi / Tasarım Merkezi) */
.tdx-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tdx-compare-card {
    padding: 32px;
    border: 1px solid var(--tdx-border);
    border-radius: var(--tdx-radius-lg);
    background: var(--tdx-bg-light);
}

.tdx-compare-card h3 {
    font-size: 20px;
    margin: 12px 0 14px;
}

.tdx-compare-card>p {
    font-size: 14px;
    margin-bottom: 18px;
}

.tdx-compare-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tdx-compare-card li {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--tdx-text-secondary);
}

.tdx-compare-card li strong {
    color: var(--tdx-navy-deep);
}

/* Basit veri tablosu (ör. belge/risk matrisi) */
.tdx-simple-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tdx-simple-table th {
    padding: 12px 16px;
    border-bottom: 2px solid var(--tdx-navy-deep);
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--tdx-navy-deep);
}

.tdx-simple-table td {
    padding: 16px;
    border-bottom: 1px solid var(--tdx-border);
    color: var(--tdx-text-secondary);
    vertical-align: top;
}

.tdx-simple-table td:first-child,
.tdx-simple-table th:first-child {
    color: var(--tdx-navy-deep);
    font-weight: 700;
}

.tdx-table-wrap {
    overflow-x: auto;
}

@media (max-width: 1024px) {
    .tdx-compare-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HİZMET DETAY SAYFALARI — Faz 2 editöryal desen
   (Hizmetler hub'ın numaralı liste dilini koyu bir hero ile
   birleştirir; kart/ikon yığını kullanılmaz.)
   ========================================================= */

.tdx-svc-hero {
    background: var(--tdx-navy);
    padding: 20px 0 0;
    color: #fff;
}

.tdx-svc-hero .tdx-breadcrumb {
    color: rgba(255, 255, 255, .55);
}

.tdx-svc-hero .tdx-breadcrumb a {
    color: rgba(255, 255, 255, .72);
}

.tdx-svc-hero .tdx-breadcrumb span[aria-current] {
    color: #fff;
}

.tdx-svc-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 1fr);
    gap: 56px;
    align-items: start;
    padding-bottom: 56px;
}

.tdx-svc-hero h1 {
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.01em;
    text-wrap: balance;
    color: #fff;
    margin-bottom: 18px;
}

.tdx-svc-hero .tdx-hero-lead {
    color: rgba(255, 255, 255, .74);
    max-width: 56ch;
    margin-bottom: 32px;
}

.tdx-svc-hero .tdx-btns {
    margin-top: 0;
}

.tdx-svc-hero .tdx-btn {
    background: var(--tdx-accent);
    border-color: var(--tdx-accent);
}

.tdx-svc-hero .tdx-btn:hover {
    background: #dd6422;
    border-color: #dd6422;
}

.tdx-svc-hero .tdx-btn--outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .35);
}

.tdx-svc-hero__side {
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 2px;
}

.tdx-svc-hero__side-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.tdx-svc-hero__side-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
}

.tdx-svc-hero__side-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .58);
}

@media (max-width: 1024px) {
    .tdx-svc-hero__inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    /* Sabit alt CTA çubuğunun (.tdx-global-floating-cta) ilk ekranda
       hero buton satırının üzerine binmesini önler — üstteki
       breadcrumb boşluğu daraltılarak dikey alan kazanılır. */
    .tdx-svc-hero .tdx-breadcrumb {
        padding: 14px 0 10px;
    }
}

/* Değerlendirme mercekleri gibi kısa, ikonsuz 2 sütunlu blok listeleri */
.tdx-lens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
}

.tdx-lens-item {
    padding: 24px 0;
    border-top: 1px solid var(--tdx-border);
}

.tdx-lens-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tdx-navy-deep);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.tdx-lens-item h3 span {
    font-size: 12px;
    font-weight: 800;
    color: var(--tdx-accent);
    letter-spacing: .04em;
}

.tdx-lens-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tdx-text-secondary);
}

@media (max-width: 768px) {
    .tdx-lens-grid {
        grid-template-columns: 1fr;
    }
}

/* SSS akordeonu */
.tdx-faq {
    display: grid;
    gap: 12px;
    max-width: 820px;
}

.tdx-faq details {
    padding: 20px 22px;
    border: 1px solid var(--tdx-border);
    border-radius: var(--tdx-radius-sm);
    background: #fff;
}

.tdx-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--tdx-navy-deep);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.tdx-faq summary::-webkit-details-marker {
    display: none;
}

.tdx-faq summary::after {
    content: '+';
    color: var(--tdx-accent);
    font-weight: 800;
    flex: none;
}

.tdx-faq details[open] summary::after {
    content: '\2013';
}

.tdx-faq p {
    margin-top: 12px;
}

.tdx-group-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--tdx-border);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--tdx-text-main);
}

.tdx-group-note strong {
    color: var(--tdx-accent);
}

.tdx-final-cta__meta {
    margin-top: 24px;
    font-size: 14px;
    color: var(--tdx-text-secondary);
}