﻿/* =====================================================================
   TKD Dijital SaÄŸlÄ±k & Yapay Zeka Ã‡alÄ±ÅŸma Grubu
   dijital.css â€” 003 Aritmi ÅŸablon yapÄ±sÄ±, tkd-dijital paleti (Navy + Amber)
   Renk deÄŸiÅŸkenleri tkd-dijital (1).html ile birebir uyumlu.
   ===================================================================== */

:root {
    --navy-950: #050e1a;
    --navy-900: #091524;
    --navy-800: #0d1f3c;
    --navy-700: #162d54;

    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;

    --blue-600:  #2563eb;
    --blue-500:  #3b82f6;

    --color-bg:      #f0f4f9;
    --color-surface: #ffffff;
    --color-border:  #e2e8f0;
    --color-text:    #0f172a;
    --color-text-2:  #475569;
    --color-text-3:  #64748b;
    --color-accent:  var(--amber-500);
}

/* â”€â”€ GLOBAL RESET (Ã§erÃ§eve/boÅŸluk kalÄ±ntÄ±larÄ±nÄ± temizler) â”€â”€ */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body.dg-page,
form#form1 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

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

.dg-page img {
    max-width: 70%;
    height: auto;
}

.dg-page ul {
    list-style-position: inside;
}

/* â”€â”€ SAYFA TABANI â”€â”€ */
.dg-page {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Interstate TR', 'Segoe UI', Arial, sans-serif;
}

.dg-page a {
    text-decoration: none;
}

/* â”€â”€ TICKER (Duyuru bandÄ±) â”€â”€ */
.dg-ticker {
    background: var(--navy-800);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.dg-ticker-track {
    display: inline-flex;
    gap: 32px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    animation: dgTicker 42s linear infinite;
}

.dg-ticker-track span:before {
    content: "\2666  ";
    color: var(--amber-400); }

@keyframes dgTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.dg-ticker-link {
    color: #fff; display: inline-flex; align-items: center;
}

.dg-ticker-link:hover, .dg-ticker-link:focus { color: var(--amber-400); }

/* â”€â”€ HEADER (Sticky) â”€â”€ */
.dg-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #0D1F3C;
    border-bottom: 3px solid var(--amber-500);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.16);
}

.dg-header-inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* Logo alanÄ± â€” TKD logosu + marka baÅŸlÄ±ÄŸÄ± */
.dg-logo { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }




.dg-logo-tkd { height: 48px !important; width: auto !important; max-width: 160px !important; }
.dg-logo a { display: flex; align-items: center; }
.dg-logo-sep { width: 1px; height: 52px; background: rgba(56,189,248,.35); flex: 0 0 auto; }
.dg-logo-group { height: 52px !important; max-width: 220px !important; width: auto !important; }




.dg-brand-title span {
    color: var(--amber-600);
}



/* â”€â”€ MENÃœ â”€â”€ */
.dg-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
    margin-left: auto;
}

.dg-nav a {
    color: rgba(255,255,255,.8);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease, background .2s ease;
}

.dg-nav a:hover,
.dg-nav a:focus {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.dg-nav .dg-nav-cta {
    background: var(--amber-500);
    color: var(--navy-900);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    transition: background .2s ease, transform .1s ease;
}

.dg-nav .dg-nav-cta:hover,
.dg-nav .dg-nav-cta:focus {
    background: var(--amber-400);
    color: var(--navy-900);
}

.dg-nav .dg-nav-cta:active {
    transform: scale(.97);
}

.dg-menu-btn {
    display: none;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    padding: 6px;
    border-radius: 8px;
    transition: background .2s ease;
}

.dg-menu-btn:hover {
    background: rgba(255,255,255,.1);
}

.dg-main {
    min-height: 600px;
}

/* â”€â”€ HERO â”€â”€ */
.dg-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050e1a 0%, #0d1f3c 50%, #69a9c0 100%);
    color: #fff;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* Hero dot dokusu */
.dg-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

/* Dijital Kalp Canvas */
.dg-hero-matrix {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: .75;
}

.dg-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    gap: 48px;
}

.dg-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

/* Hero yan panel */
.dg-hero-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 390px;
    justify-self: end;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.dg-hero-panel-head {
    padding: 18px 24px;
    background: rgba(5,14,26,.4);
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.dg-hero-panel-head span {
    display: block;
    color: var(--amber-400);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.dg-hero-panel-head strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.dg-hero-panel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.dg-hero-panel-item {
    display: block;
    color: #fff;
    padding: 17px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    font-family: 'Interstate', 'Interstate TR', 'Segoe UI', Arial, sans-serif;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.dg-hero-panel-item:hover,
.dg-hero-panel-item:focus {
    color: #fff;
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.28);
    transform: translateX(4px);
}

.dg-hero-panel-item strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.dg-hero-panel-item small {
    display: block;
    color: rgba(255,255,255,.56);
    font-size: 14px;
    line-height: 1.45;
}

/* ═══════════ INNER PAGE HERO ═══════════ */
.dg-inner-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%); padding: 1px 0; }
.dg-inner-hero-content { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0 76px; }
.dg-inner-hero-content span { display: inline-flex; border: 1px solid rgba(56,189,248,.45); background: rgba(56,189,248,.12); border-radius: 999px; padding: 9px 16px; color: #38bdf8; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; font-size: 12px; }
.dg-inner-hero-content h1 { margin: 20px 0 0; color: #fff; font-size: clamp(38px, 5vw, 60px); line-height: 1; font-weight: 900; }

/* ═══════════ BOARD CARDS ═══════════ */
.dg-board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; max-width: 900px; }
.dg-board-card { background: #fff; border: 1px solid rgba(56,189,248,.12); border-radius: 12px; padding: 20px 22px; transition: border-color .3s, background .3s; }
.dg-board-card:hover { border-color: rgba(56,189,248,.35); background: rgba(56,189,248,.06); }
.dg-board-role { display: block; font-size: 11px; font-weight: 700; letter-spacing: .05em; color: #38bdf8; text-transform: uppercase; margin-bottom: 8px; }
.dg-board-name { color: #1e293b; font-size: 15px; line-height: 1.4; }
.dg-board-name a { color: #38bdf8; text-decoration: none; }

/* ═══════════ EVENT CARDS ═══════════ */
.dg-event-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; }
.dg-event-card { display: flex; gap: 18px; background: #fff; border: 1px solid rgba(56,189,248,.12); border-radius: 12px; padding: 20px 22px; transition: border-color .3s, background .3s; }
.dg-event-card:hover { border-color: rgba(56,189,248,.35); background: rgba(56,189,248,.04); }
.dg-event-card-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(56,189,248,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #38bdf8; font-size: 20px; }
.dg-event-card-body { flex: 1; min-width: 0; }
.dg-event-card-body strong { color: #1e293b; font-size: 16px; text-decoration: none; transition: color .2s; }
.dg-event-card-body a:hover strong { color: #38bdf8; }
.dg-event-card-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #64748b; font-size: 13px; margin-top: 8px; }
.dg-event-card-meta i { color: #38bdf8; margin-right: 4px; }
.dg-event-card-files { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(56,189,248,.1); }
.dg-event-pdf-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(56,189,248,.1); color: #38bdf8; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; transition: background .2s; }
.dg-event-pdf-btn:hover { background: rgba(56,189,248,.2); }

@media (max-width: 767px) {
    .dg-board-grid { grid-template-columns: 1fr; }
    .dg-event-card { flex-direction: column; gap: 10px; }
    .dg-inner-hero-content { padding: 48px 0 52px; }
}

/* Hero badge (amber temalÄ±) */
.dg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.38);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 34px;
    color: var(--amber-400); }

.dg-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: dgBlink 1.5s ease-in-out infinite;
}

@keyframes dgBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .2; }
}

/* Hero baÅŸlÄ±k & metin */
.dg-hero h1 {
    max-width: 820px;
    margin: 0 0 30px;
    font-size: clamp(38px, 4.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: #fff;
}

.dg-hero h1 .accent {
    color: var(--amber-400);
    text-shadow: 0 2px 14px rgba(245,158,11,.28);
}

.dg-hero h2 {
    margin: 0 0 26px 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.dg-hero p {
    max-width: 700px;
    margin: 0 0 0 0;
    color: rgba(255,255,255,.62);
    font-size: 16px;
    line-height: 1.75;
}

/* CTA butonlar */
.dg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
}

.dg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
    padding: 16px 30px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 16px;
    transition: all .2s ease;
}

.dg-btn:active {
    transform: scale(.97);
}

.dg-btn-primary {
    background: var(--amber-500);
    color: var(--navy-900);
}

.dg-btn-primary:hover {
    background: var(--amber-400);
    box-shadow: 0 0 20px rgba(245,158,11,.38);
}

.dg-btn-outline {
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
}

.dg-btn-outline:hover {
    border-color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.06);
}

/* Ä°statistik */
.dg-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 66px;
}

.dg-stat {
    min-width: 160px;
    padding-right: 38px;
    margin-right: 38px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.dg-stat:last-child {
    border-right: 0;
}

.dg-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.dg-stat span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.45);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* â”€â”€ Ä°Ã‡ERÄ°K BÃ–LÃœMLERÄ° â”€â”€ */
.dg-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.dg-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.dg-eyebrow {
    color: var(--amber-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dg-section h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--color-text);
}

.dg-muted {
    color: var(--color-text-2);
    line-height: 1.7;
}

/* â”€â”€ HABER KARTLARI BÃ–LÃœMÃœ (banner altÄ±) â”€â”€ */
.dg-cards {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dg-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.06);
}

.dg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.12);
}

.dg-card-media {
    height: 150px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.dg-card-media .dg-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.dg-card-media .dg-card-lbl {
    font-size: 12px;
    font-weight: 600;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dg-card-media .dg-card-bar {
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.dg-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dg-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dg-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px;
    line-height: 1.35;
}

.dg-card-desc {
    font-size: 14px;
    color: var(--color-text-2);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.dg-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.dg-card-meta {
    font-size: 12px;
    color: var(--color-text-3);
}

.dg-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all .2s ease;
}

.dg-card-btn i {
    transition: transform .2s ease;
}

.dg-card-btn:hover i {
    transform: translateX(3px);
}

/* Kart renk temalarÄ± */
.dg-c-makale .dg-card-media { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.dg-c-makale .dg-card-media .dg-card-icon,
.dg-c-makale .dg-card-media .dg-card-lbl { color: #93c5fd; }
.dg-c-makale .dg-card-bar { background: var(--blue-600); }
.dg-c-makale .dg-card-cat { color: var(--blue-600); }
.dg-c-makale .dg-card-btn { background: #eff6ff; color: var(--blue-600); }
.dg-c-makale .dg-card-btn:hover { background: var(--blue-600); color: #fff; }

.dg-c-proje .dg-card-media { background: linear-gradient(135deg, #312e81, #4f46e5); }
.dg-c-proje .dg-card-media .dg-card-icon,
.dg-c-proje .dg-card-media .dg-card-lbl { color: #c4b5fd; }
.dg-c-proje .dg-card-bar { background: #4f46e5; }
.dg-c-proje .dg-card-cat { color: #4f46e5; }
.dg-c-proje .dg-card-btn { background: #eef2ff; color: #4f46e5; }
.dg-c-proje .dg-card-btn:hover { background: #4f46e5; color: #fff; }

.dg-c-sertifika .dg-card-media { background: linear-gradient(135deg, #134e4a, #0d9488); }
.dg-c-sertifika .dg-card-media .dg-card-icon,
.dg-c-sertifika .dg-card-media .dg-card-lbl { color: #5eead4; }
.dg-c-sertifika .dg-card-bar { background: #0d9488; }
.dg-c-sertifika .dg-card-cat { color: #0d9488; }
.dg-c-sertifika .dg-card-btn { background: #f0fdfa; color: #0d9488; }
.dg-c-sertifika .dg-card-btn:hover { background: #0d9488; color: #fff; }

.dg-c-yz .dg-card-media { background: linear-gradient(135deg, #78350f, #d97706); }
.dg-c-yz .dg-card-media .dg-card-icon,
.dg-c-yz .dg-card-media .dg-card-lbl { color: #fcd34d; }
.dg-c-yz .dg-card-bar { background: var(--amber-600); }
.dg-c-yz .dg-card-cat { color: var(--amber-600); }
.dg-c-yz .dg-card-btn { background: #fffbeb; color: var(--amber-600); }
.dg-c-yz .dg-card-btn:hover { background: var(--amber-600); color: #fff; }

.dg-c-webinar .dg-card-media { background: linear-gradient(135deg, #064e3b, #059669); }
.dg-c-webinar .dg-card-media .dg-card-icon,
.dg-c-webinar .dg-card-media .dg-card-lbl { color: #6ee7b7; }
.dg-c-webinar .dg-card-bar { background: #059669; }
.dg-c-webinar .dg-card-cat { color: #059669; }
.dg-c-webinar .dg-card-btn { background: #ecfdf5; color: #059669; }
.dg-c-webinar .dg-card-btn:hover { background: #059669; color: #fff; }

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

.dg-news-section {
    background: #f8fafc;
}

.dg-news-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dg-news-card {
    overflow: hidden;
    display: block;
    min-height: 330px;
    border-radius: 16px;
    background: #fff;
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.dg-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.12);
}

.dg-news-card-media {
    position: relative;
    height: 180px;
    background: #0f172a;
}

.dg-news-card-media img {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.dg-news-card-title {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 45%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.dg-news-card-body {
    display: block;
    padding: 24px 26px;
}

.dg-news-card small {
    display: block;
    color: var(--amber-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.dg-news-card strong {
    display: block;
    margin: 13px 0;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.3;
}

.dg-news-card em {
    display: block;
    color: var(--color-text-3);
    font-style: normal;
    font-size: 14px;
}

@media (max-width: 980px) {
    .dg-news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .dg-news-grid { grid-template-columns: 1fr; }
    .dg-news-card-title {
        left: 18px;
        width: 48%;
        font-size: 14px;
    }
}

/* Detay kartÄ± (Dijital SaÄŸlÄ±k Nedir / Neden / Hedeflerimiz bÃ¶lÃ¼mleri) */
.dg-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 72px;
    display: grid;
    gap: 26px;
}

.dg-detail-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.08);
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}

.dg-detail-card:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--amber-500);
}

.dg-detail-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--amber-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dg-detail-card h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    margin: 0 0 18px;
    color: var(--navy-900);
    line-height: 1.2;
}

.dg-detail-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 26px 0 12px;
    color: var(--navy-900);
}

.dg-detail-card p {
    color: var(--color-text-2);
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 14px;
}

.dg-detail-card ul {
    padding-left: 4px;
    margin: 14px 0 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.dg-detail-card li {
    position: relative;
    padding-left: 30px;
    color: var(--color-text);
    line-height: 1.7;
    font-size: 15px;
}

.dg-detail-card li:before {
    content: '\25B6';
    position: absolute;
    left: 4px;
    top: 1px;
    color: var(--amber-500);
    font-size: 11px;
}

.dg-detail-card strong {
    color: var(--navy-900);
    font-weight: 800;
}

/* Digital inner content system */
.dg-content-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.dg-content-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 32px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 34px;
    border: 1px solid rgba(56,189,248,.18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(8,18,35,.97), rgba(13,31,60,.95)),
        radial-gradient(circle at 20% 10%, rgba(56,189,248,.24), transparent 34%),
        radial-gradient(circle at 85% 80%, rgba(245,158,11,.20), transparent 30%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(5,14,26,.16);
}

.dg-content-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.75), transparent);
    pointer-events: none;
}

.dg-content-hero > * {
    position: relative;
    z-index: 1;
}

.dg-content-kicker {
    display: inline-flex;
    align-items: center;
    color: #7dd3fc;
    background: rgba(56,189,248,.12);
    border: 1px solid rgba(56,189,248,.35);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dg-content-hero h2 {
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.dg-content-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(226,232,240,.86);
    font-size: 17px;
    line-height: 1.75;
}

.dg-pulse-orbit {
    position: relative;
    width: 160px;
    height: 160px;
    justify-self: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,.22), rgba(56,189,248,.04) 48%, transparent 62%);
}

.dg-pulse-orbit:before,
.dg-pulse-orbit:after,
.dg-pulse-orbit span {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(125,211,252,.55);
    border-radius: 50%;
    animation: dgOrbitPulse 4.8s ease-in-out infinite;
}

.dg-pulse-orbit:after {
    inset: 38px;
    border-color: rgba(251,191,36,.55);
    animation-delay: -1.6s;
}

.dg-pulse-orbit span:nth-child(1) {
    inset: 68px;
    background: #38bdf8;
    border: 0;
    box-shadow: 0 0 28px rgba(56,189,248,.9);
}

.dg-pulse-orbit span:nth-child(2),
.dg-pulse-orbit span:nth-child(3) {
    width: 10px;
    height: 10px;
    inset: auto;
    border: 0;
    background: #fbbf24;
    box-shadow: 0 0 18px rgba(251,191,36,.8);
}

.dg-pulse-orbit span:nth-child(2) { left: 28px; top: 72px; }
.dg-pulse-orbit span:nth-child(3) { right: 34px; bottom: 44px; animation-delay: -2.4s; }

@keyframes dgOrbitPulse {
    0%, 100% { transform: scale(.96); opacity: .62; }
    50% { transform: scale(1.06); opacity: 1; }
}

.dg-meta-strip,
.dg-data-grid,
.dg-goal-grid,
.dg-chip-grid {
    display: grid;
    gap: 14px;
}

.dg-meta-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
}

.dg-meta-strip div,
.dg-data-grid div,
.dg-goal-grid div,
.dg-chip-grid div {
    background: #fff;
    border: 1px solid rgba(56,189,248,.16);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.dg-meta-strip div { padding: 18px; }
.dg-meta-strip strong,
.dg-meta-strip span {
    display: block;
}
.dg-meta-strip strong {
    color: var(--blue-600);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.dg-meta-strip span { color: var(--color-text-2); line-height: 1.45; }

.dg-content-block {
    margin-top: 22px;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(56,189,248,.14);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(15,23,42,.06);
}

.dg-content-block h3 {
    margin: 0 0 14px;
    color: var(--navy-900);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.dg-content-block p {
    margin: 0 0 14px;
    color: var(--color-text-2);
    font-size: 16px;
    line-height: 1.8;
}
.dg-content-block p:last-child { margin-bottom: 0; }

.dg-data-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
}
.dg-data-grid div { padding: 20px; }
.dg-data-grid strong {
    display: block;
    color: var(--blue-600);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 8px;
}
.dg-data-grid span { color: var(--color-text-3); font-size: 14px; }

.dg-step-list {
    display: grid;
    gap: 12px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
    counter-reset: dgStep;
}
.dg-step-list li {
    counter-increment: dgStep;
    position: relative;
    padding: 18px 18px 18px 58px;
    border: 1px solid rgba(37,99,235,.14);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(56,189,248,.04));
    color: var(--color-text-2);
    line-height: 1.65;
}
.dg-step-list li:before {
    content: counter(dgStep);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-600);
    color: #fff;
    font-weight: 900;
}

.dg-highlight-panel {
    background: linear-gradient(135deg, rgba(13,31,60,.96), rgba(30,58,95,.94));
    border-color: rgba(56,189,248,.28);
}
.dg-highlight-panel h3,
.dg-highlight-panel p,
.dg-highlight-panel strong { color: #fff; }
.dg-highlight-panel p { color: rgba(226,232,240,.86); }

.dg-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}
.dg-image-gallery figure {
    margin: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(56,189,248,.16);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(15,23,42,.07);
}
.dg-page .dg-image-gallery img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.dg-reference-box ol {
    margin: 0;
    padding-left: 20px;
    color: var(--color-text-2);
    line-height: 1.7;
}
.dg-reference-box li { margin-bottom: 10px; }

.dg-goal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dg-goal-grid div {
    position: relative;
    overflow: hidden;
    padding: 22px;
}
.dg-goal-grid div:after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(56,189,248,.10);
}
.dg-goal-grid span {
    display: inline-flex;
    color: #fff;
    background: var(--navy-800);
    border-radius: 8px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}
.dg-goal-grid p {
    margin: 0;
    color: var(--color-text-2);
    line-height: 1.65;
}

.dg-goals-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 22px;
}

.dg-goals-shortcuts a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(56,189,248,.18);
    background:
        linear-gradient(135deg, #ffffff, #f8fafc),
        radial-gradient(circle at 100% 0, rgba(251,191,36,.14), transparent 30%);
    color: var(--navy-900);
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
    font-weight: 900;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dg-goals-shortcuts a:hover,
.dg-goals-shortcuts a:focus {
    color: var(--navy-900);
    border-color: rgba(245,158,11,.44);
    box-shadow: 0 18px 40px rgba(15,23,42,.10);
    transform: translateY(-2px);
}

.dg-goals-shortcuts i {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: var(--amber-500);
    color: var(--navy-900);
}

.dg-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dg-chip-grid div {
    padding: 22px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(56,189,248,.55), rgba(251,191,36,.42)) border-box;
    border: 1px solid transparent;
}
.dg-chip-grid strong {
    display: block;
    color: var(--navy-900);
    font-size: 18px;
    margin-bottom: 8px;
}
.dg-chip-grid span {
    display: block;
    color: var(--color-text-3);
    line-height: 1.55;
}

.dg-projects-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.dg-projects-orbit {
    position: relative;
    width: 190px;
    height: 190px;
    justify-self: center;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(56,189,248,.14), rgba(251,191,36,.12)),
        radial-gradient(circle at 34% 34%, rgba(125,211,252,.34), transparent 34%);
    border: 1px solid rgba(125,211,252,.28);
    box-shadow: inset 0 0 40px rgba(56,189,248,.12);
}

.dg-projects-orbit span {
    position: absolute;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 22px rgba(56,189,248,.7);
}

.dg-projects-orbit span:nth-child(1) { width: 54px; height: 54px; left: 24px; top: 28px; }
.dg-projects-orbit span:nth-child(2) { width: 34px; height: 34px; right: 28px; top: 42px; background: #fbbf24; box-shadow: 0 0 22px rgba(251,191,36,.7); }
.dg-projects-orbit span:nth-child(3) { width: 72px; height: 10px; left: 54px; bottom: 48px; }
.dg-projects-orbit span:nth-child(4) { width: 10px; height: 72px; left: 86px; bottom: 18px; background: #fbbf24; box-shadow: 0 0 22px rgba(251,191,36,.7); }

.dg-project-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.dg-project-metrics div {
    padding: 20px;
    border: 1px solid rgba(56,189,248,.18);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.94)),
        radial-gradient(circle at 100% 0, rgba(56,189,248,.12), transparent 28%);
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.dg-project-metrics strong,
.dg-project-metrics span {
    display: block;
}

.dg-project-metrics strong {
    color: var(--navy-900);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}

.dg-project-metrics span {
    color: var(--color-text-3);
    line-height: 1.45;
}

.dg-project-list {
    display: grid;
    gap: 18px;
}

.dg-project-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(56,189,248,.15);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.dg-project-index {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-800), #164e63);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 26px rgba(13,31,60,.18);
}

.dg-project-body h3 {
    margin: 0 0 14px;
    color: var(--navy-900);
    font-size: 24px;
    line-height: 1.22;
    font-weight: 900;
}

.dg-project-body p {
    margin: 0 0 13px;
    color: var(--color-text-2);
    font-size: 16px;
    line-height: 1.78;
}

.dg-project-body p:last-child {
    margin-bottom: 0;
}

.dg-project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 4px 0 18px;
}

.dg-project-gallery img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15,23,42,.08);
}

.dg-project-gallery-single {
    grid-template-columns: minmax(0, 760px);
}

.dg-project-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 6px 0 14px;
    padding: 0;
    list-style: none;
}

.dg-project-points li {
    padding: 12px 14px;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 12px;
    background: rgba(37,99,235,.05);
    color: var(--navy-900);
    font-weight: 700;
}

.dg-project-card-featured {
    background:
        linear-gradient(135deg, rgba(13,31,60,.97), rgba(8,47,73,.94)),
        radial-gradient(circle at 100% 0, rgba(251,191,36,.24), transparent 32%);
}

.dg-project-card-featured .dg-project-body h3,
.dg-project-card-featured .dg-project-body p {
    color: #fff;
}

.dg-project-card-featured .dg-project-body p {
    color: rgba(226,232,240,.88);
}

.dg-project-card-featured .dg-project-index {
    background: var(--amber-500);
    color: var(--navy-900);
}

.dg-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--amber-500);
    color: var(--navy-900);
    font-weight: 900;
}

.dg-project-link:hover,
.dg-project-link:focus {
    background: var(--amber-400);
    color: var(--navy-900);
}

@media (max-width: 900px) {
    .dg-content-hero,
    .dg-meta-strip,
    .dg-data-grid,
    .dg-goal-grid,
    .dg-chip-grid,
    .dg-image-gallery,
    .dg-goals-shortcuts,
    .dg-project-metrics,
    .dg-project-card,
    .dg-project-points {
        grid-template-columns: 1fr;
    }
    .dg-pulse-orbit,
    .dg-projects-orbit { display: none; }
    .dg-content-hero,
    .dg-content-block { padding: 24px; }
    .dg-project-card { padding: 20px; }
}

/* â”€â”€ FOOTER â”€â”€ */
.dg-footer { background: #0f172a; color: rgba(255,255,255,.78); margin-top: 50px; border-top: 1px solid rgba(56,189,248,.15); }
.dg-footer-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 56px 0 42px; display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 42px; }
.dg-footer-logo { max-width: 180px; height: auto; margin-bottom: 12px; display: block; }
.dg-footer h3 { margin: 0 0 18px; color: #fff; font-size: 15px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.dg-footer p { margin: 0 0 10px; line-height: 1.6; font-size: 14px; }
.dg-footer a { display: block; color: rgba(255,255,255,.78); margin: 0 0 12px; font-size: 14px; text-decoration: none; transition: color .2s; }
.dg-footer a:hover { color: #38bdf8; }
.dg-social { display: flex; gap: 10px; margin-top: 14px; }
.dg-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: 14px; margin: 0; transition: background .2s, color .2s; }
.dg-social a:hover { background: #38bdf8; color: #fff; }
.dg-footer-bottom { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 18px 0 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 18px; font-size: 13px; }
.dg-footer-bottom a { margin: 0; display: inline; }

@media (max-width: 991px) {
    .dg-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .dg-footer-logo { max-width: 150px; }
}
@media (max-width: 575px) {
    .dg-logo { gap: 10px; }
    .dg-logo-tkd { height: 30px !important; max-width: 100px !important; }
    .dg-logo-group { height: 28px !important; max-width: 110px !important; }
    .dg-logo-sep { height: 26px; }
    .dg-hero h1 { font-size: 28px; }
    .dg-hero p { font-size: 14px; }
    .dg-hero-inner { padding: 36px 16px 56px; }
    .dg-hero-panel-list { padding: 16px; }
    .dg-hero-panel-item { padding: 12px 14px; }
    .dg-stats { flex-direction: column; gap: 12px; }
    .dg-actions { flex-direction: column; }
    .dg-actions .dg-btn { width: 100%; text-align: center; }
    .dg-inner-hero-content { padding: 36px 16px 42px; }
    .dg-inner-hero-content h1 { font-size: 28px; }
    .dg-section { padding: 32px 16px; }
}@media (max-width: 1023px) {
    .dg-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(56,189,248,.4);
        background: rgba(56,189,248,.1);
        color: #fff;
        border-radius: 8px;
        width: 44px;
        height: 40px;
        font-size: 22px;
        cursor: pointer;
    }

    .dg-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #0D1F3C;
        border-top: 1px solid rgba(255,255,255,.1);
        padding: 14px 24px 18px;
        flex-direction: column;
        align-items: stretch;
        z-index: 1000;
    }

    .dg-nav.open { display: flex; }
    .dg-nav a { width: 100%; padding: 12px 10px; }
    .dg-header { position: relative; }
    .dg-header-inner { flex-wrap: wrap; }

    .dg-hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 20px 64px;
    }

    .dg-hero-content {
        max-width: 100%;
    }

    .dg-hero h1 { font-size: 36px; line-height: 1.1; }
    .dg-hero p { font-size: 15px; }

    .dg-hero-panel {
        max-width: 100%;
        justify-self: stretch;
        margin-top: 0;
    }

    .dg-section { padding: 40px 20px; }
    .dg-cards { grid-template-columns: 1fr; }
    .dg-inner-hero-content { padding: 48px 20px 52px; }
    .dg-board-grid { grid-template-columns: 1fr; }
    .dg-event-card { flex-direction: column; gap: 10px; }

    .dg-logo-tkd { height: 36px !important; max-width: 120px !important; }
    .dg-logo-group { height: 32px !important; max-width: 130px !important; }
    .dg-logo-sep { height: 32px; }
}@media (max-width: 575px) {
    .dg-logo {
        gap: 10px;
    }

    .dg-logo-tkd {
        height: 30px !important;
        max-width: 100px !important;
    }

    .dg-logo-group {
        height: 28px !important;
        max-width: 110px !important;
    }

    .dg-logo-sep {
        height: 26px;
    }

    .dg-hero h1 {
        font-size: 28px;
    }

    .dg-hero-inner {
        padding: 36px 16px 56px;
    }

    .dg-stats {
        flex-direction: column;
        gap: 12px;
    }

    .dg-actions {
        flex-direction: column;
    }

    .dg-inner-hero-content h1 {
        font-size: 30px;
    }
}
