/* ============================================================
   ÜRÜN DETAY PAGE — Namespaced Styles
   Namespace: .urundetay-page
   ============================================================ */

.urundetay-page {
    position: relative;
    width: 100%;
}

.urundetay-page .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ============================================================
   QUICK STATS
   ============================================================ */
.urundetay-quickstats {
    background: #111111;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.urundetay-quickstats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.urundetay-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.urundetay-stat:last-child {
    border-right: none;
}

.urundetay-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.urundetay-stat:hover {
    background: rgba(255, 192, 0, 0.04);
}

.urundetay-stat:hover::before {
    transform: scaleX(1);
}

.urundetay-stat-value {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.urundetay-stat-value span {
    font-size: 0.48em;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-left: 3px;
    vertical-align: middle;
}

.urundetay-stat-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.urundetay-intro {
    background: #ffffff;
    padding: 96px 0;
}

.urundetay-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

/* Gallery */
.urundetay-intro-gallery {
    position: sticky;
    top: 100px;
}

.urundetay-gallery-main {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #f5f5f5;
    margin-bottom: 12px;
}

.urundetay-gallery-main-image {
    position: relative;
    z-index: 1;
    transition: opacity 0.25s ease;
}

.urundetay-gallery-main-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    display: block;
    filter: grayscale(0.1);
    transition: filter 0.4s ease, opacity 0.2s ease;
    background: #f0f0f0;
}

.urundetay-gallery-main:hover .urundetay-gallery-main-img {
    filter: grayscale(0);
}

.urundetay-gallery-main-3d {
    position: absolute;
    inset: 0;
    display: none;
    z-index: 2;
    pointer-events: auto;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 2px;
    overflow: hidden;
}

.urundetay-gallery-main-3d canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.urundetay-gallery-3d-controls {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 2px;
    padding: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.urundetay-gallery-main--is-3d-active .urundetay-gallery-main-image {
    opacity: 0;
    pointer-events: none;
}

.urundetay-gallery-main--is-3d-active .urundetay-gallery-main-3d,
.urundetay-gallery-main--is-3d-active .urundetay-gallery-3d-controls {
    display: block;
}

.urundetay-gallery-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 4;
    pointer-events: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.92);
    border-left: 2px solid var(--primary-color);
    padding: 5px 10px;
    border-radius: 1px;
}

.urundetay-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.urundetay-gallery-thumb {
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    background: none;
}

.urundetay-gallery-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.2s ease;
    background: #f0f0f0;
}

.urundetay-gallery-thumb:hover img,
.urundetay-gallery-thumb.active img {
    filter: grayscale(0);
}

.urundetay-gallery-thumb.active {
    border-color: var(--primary-color);
}

.urundetay-gallery-thumb--3d {
    aspect-ratio: 4 / 3;
    min-height: 0;
    background: linear-gradient(145deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.urundetay-gallery-thumb--3d:hover {
    border-color: rgba(255, 192, 0, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 192, 0, 0.15);
}

.urundetay-gallery-thumb--3d.active {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(255, 192, 0, 0.08) 0%, rgba(255, 192, 0, 0.04) 100%);
    box-shadow: 0 0 0 2px rgba(255, 192, 0, 0.2);
}

.urundetay-gallery-thumb-3d-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.urundetay-gallery-thumb-3d-inner i {
    font-size: 22px;
    color: var(--primary-color);
    opacity: 0.9;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.urundetay-gallery-thumb--3d:hover .urundetay-gallery-thumb-3d-inner i {
    transform: rotateY(-12deg) rotateX(8deg);
}

.urundetay-gallery-thumb-3d-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-dark-low);
    text-transform: uppercase;
}

.urundetay-gallery-thumb--3d.active .urundetay-gallery-thumb-3d-text {
    color: var(--primary-color);
}

/* Info Panel */
.urundetay-intro-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark-low);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.urundetay-intro-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.urundetay-intro-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.urundetay-intro-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin-bottom: 36px;
}

.urundetay-intro-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.urundetay-intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.urundetay-intro-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 192, 0, 0.1);
    border: 1px solid rgba(255, 192, 0, 0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.urundetay-intro-feature-icon i {
    font-size: 14px;
    color: var(--primary-color);
}

.urundetay-intro-feature:hover .urundetay-intro-feature-icon {
    background: var(--primary-color);
}

.urundetay-intro-feature:hover .urundetay-intro-feature-icon i {
    color: #000000;
}

.urundetay-intro-feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.urundetay-intro-feature-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.urundetay-intro-feature-text span {
    font-size: 13px;
    color: var(--text-dark-low);
    line-height: 1.5;
}

.urundetay-intro-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* 3D toggle buttons (reused inside gallery) */
.urundetay-3d-mode-btn {
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.5);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.urundetay-3d-mode-btn span {
    display: none;
}

.urundetay-3d-mode-btn i {
    font-size: 16px;
    opacity: 0.6;
    margin: 0;
}

.urundetay-3d-mode-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.urundetay-3d-mode-btn:hover:not(:disabled) {
    color: var(--text-dark);
}

.urundetay-3d-mode-btn.active {
    color: var(--text-dark);
    font-weight: 600;
}

.urundetay-3d-mode-btn.active i {
    opacity: 1;
    color: var(--primary-color);
}

.urundetay-3d-mode-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.08);
}

/* ============================================================
   TECHNICAL SPECS
   ============================================================ */
.urundetay-specs {
    background: #f5f5f5;
    padding: 96px 0;
}

.urundetay-specs-header {
    margin-bottom: 52px;
}

.urundetay-specs-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark-low);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.urundetay-specs-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.urundetay-specs-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.urundetay-specs-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 52px;
    align-items: start;
}

/* Spec Table */
.urundetay-specs-table-wrap {
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.urundetay-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.urundetay-specs-table thead tr {
    background: #111111;
}

.urundetay-specs-table thead th {
    padding: 14px 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-weight: 500;
}

.urundetay-specs-table thead th:last-child {
    text-align: right;
}

.urundetay-specs-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.urundetay-specs-table tbody tr:last-child {
    border-bottom: none;
}

.urundetay-specs-table tbody tr:hover {
    background: rgba(255, 192, 0, 0.03);
}

.urundetay-specs-table tbody td {
    padding: 14px 20px;
    vertical-align: middle;
}

.urundetay-specs-param {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.urundetay-specs-val {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: var(--text-dark-low);
}

.urundetay-specs-unit {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: var(--primary-color);
    display: block;
    text-align: right;
    font-weight: 600;
}

/* Performance Cards */
.urundetay-specs-eyebrow-small {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark-low);
    margin-bottom: 16px;
}

.urundetay-specs-perf-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.urundetay-specs-perf-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    padding: 16px 18px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.urundetay-specs-perf-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 192, 0, 0.3);
}

.urundetay-specs-perf-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 192, 0, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urundetay-specs-perf-icon i {
    font-size: 13px;
    color: var(--primary-color);
}

.urundetay-specs-perf-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.urundetay-specs-perf-content strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.urundetay-specs-perf-content span {
    font-size: 12px;
    color: var(--text-dark-low);
    line-height: 1.5;
}

/* Standards Tags */
.urundetay-specs-standards {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 24px;
}

.urundetay-specs-standards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.urundetay-specs-standard-tag {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    background: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 5px 10px;
    transition: all 0.2s ease;
}

.urundetay-specs-standard-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
}

/* ============================================================
   HOW IT WORKS — MECHANISM
   ============================================================ */
.urundetay-mechanism {
    background: #fafafa;
    padding: 96px 0;
    overflow: hidden;
}

.urundetay-mechanism-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 192, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.urundetay-mechanism .container {
    position: relative;
    z-index: 1;
}

.urundetay-mechanism-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.urundetay-mechanism-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark-low);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.urundetay-mechanism-eyebrow::before,
.urundetay-mechanism-eyebrow::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary-color);
}

.urundetay-mechanism-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.urundetay-mechanism-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark-low);
}

/* Steps */
.urundetay-mechanism-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 64px;
}

.urundetay-mechanism-step {
    position: relative;
}

.urundetay-mechanism-step-num {
    font-family: 'Roboto Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 192, 0, 0.2);
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 0;
    pointer-events: none;
}

.urundetay-mechanism-step-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    padding: 28px 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.urundetay-mechanism-step-content:hover {
    background: #ffffff;
    border-color: rgba(255, 192, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.urundetay-mechanism-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 192, 0, 0.12);
    border: 1px solid rgba(255, 192, 0, 0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.urundetay-mechanism-step-icon i {
    font-size: 16px;
    color: var(--primary-color);
}

.urundetay-mechanism-step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.urundetay-mechanism-step-content p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-dark-low);
}

.urundetay-mechanism-step-arrow {
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 14px;
    padding: 0 12px;
    flex-shrink: 0;
}

/* Charts under mechanism — scroll-triggered animation */
.urundetay-mechanism-charts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.urundetay-mech-chart {
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 20px 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.urundetay-mech-chart svg {
    width: 100%;
    height: auto;
    display: block;
}

.urundetay-mech-chart-title {
    font-size: 9px;
    font-weight: 500;
    fill: var(--text-dark-low);
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 0.3px;
}

/* Animations only run when section is in view */
.urundetay-mechanism-charts .urundetay-mech-draw-line,
.urundetay-mechanism-charts .urundetay-mech-draw-line-delay {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-draw-line {
    animation: urundetayMechDraw 2.8s ease-out forwards;
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-draw-line-delay {
    animation: urundetayMechDraw 2.8s ease-out 0.35s forwards;
}

.urundetay-mechanism-charts .urundetay-mech-fade-in {
    opacity: 0;
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-fade-in {
    animation: urundetayMechFade 0.8s ease-out forwards;
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-1 { animation-delay: 0.3s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-2 { animation-delay: 0.4s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-3 { animation-delay: 0.5s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-4 { animation-delay: 0.6s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-5 { animation-delay: 0.7s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-6 { animation-delay: 0.8s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-7 { animation-delay: 0.9s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-8 { animation-delay: 1.0s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-9 { animation-delay: 1.1s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-10 { animation-delay: 1.2s; }
.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-delay-text { animation-delay: 1.4s; }

@keyframes urundetayMechDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes urundetayMechFade {
    to { opacity: 1; }
}

.urundetay-mechanism-charts .urundetay-mech-drop-arrow {
    opacity: 0;
    transform: translateY(-8px);
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-drop-arrow {
    animation: urundetayMechDrop 0.5s ease-out forwards;
}

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

.urundetay-mechanism-charts .urundetay-mech-shift-arrow {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-shift-arrow {
    animation: urundetayMechDraw 1.2s ease-out 1.8s forwards;
}

.urundetay-mechanism-charts .urundetay-mech-shift-arrow-head {
    opacity: 0;
}

.urundetay-mechanism-charts.urundetay-mech-charts-inview .urundetay-mech-shift-arrow-head {
    animation: urundetayMechFade 0.4s ease-out 2.6s forwards;
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.urundetay-apps {
    background: #ffffff;
    padding: 96px 0;
}

.urundetay-apps-header {
    margin-bottom: 52px;
}

.urundetay-apps-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark-low);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.urundetay-apps-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.urundetay-apps-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.urundetay-apps-desc {
    font-size: 16px;
    color: var(--text-dark-low);
    max-width: 540px;
    line-height: 1.7;
}

.urundetay-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.urundetay-app-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.urundetay-app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 192, 0, 0.3);
}

.urundetay-app-card--featured {
    border-color: rgba(255, 192, 0, 0.25);
    background: linear-gradient(to bottom, rgba(255, 192, 0, 0.02), #ffffff);
}

.urundetay-app-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.urundetay-app-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.7);
    transition: filter 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.urundetay-app-card:hover .urundetay-app-card-img img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.urundetay-app-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.urundetay-app-card:hover .urundetay-app-card-overlay {
    opacity: 1;
}

.urundetay-app-card-overlay span {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 7px 14px;
    border-radius: 1px;
}

.urundetay-app-card-body {
    padding: 24px 22px;
}

.urundetay-app-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 192, 0, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.urundetay-app-card-icon i {
    font-size: 14px;
    color: var(--primary-color);
}

.urundetay-app-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.urundetay-app-card-body p {
    font-size: 13px;
    color: var(--text-dark-low);
    line-height: 1.6;
    margin-bottom: 14px;
}

.urundetay-app-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.urundetay-app-card-body ul li {
    font-size: 12px;
    color: var(--text-dark-low);
    padding: 4px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.urundetay-app-card-body ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.urundetay-app-card-body ul li:last-child {
    border-bottom: none;
}

/* ============================================================
   DOWNLOADS
   ============================================================ */
.urundetay-downloads {
    background: #fafafa;
    padding: 96px 0;
}

.urundetay-downloads-header {
    margin-bottom: 52px;
}

.urundetay-downloads-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark-low);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.urundetay-downloads-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.urundetay-downloads-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.urundetay-downloads-desc {
    font-size: 16px;
    color: var(--text-dark-low);
}

.urundetay-downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.urundetay-dl-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    padding: 22px 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.urundetay-dl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 192, 0, 0.3);
}

.urundetay-dl-card--request {
    border-style: dashed;
    border-color: rgba(255, 192, 0, 0.3);
    background: rgba(255, 192, 0, 0.02);
}

.urundetay-dl-card--request:hover {
    border-color: var(--primary-color);
    background: rgba(255, 192, 0, 0.05);
}

.urundetay-dl-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 192, 0, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urundetay-dl-card-icon i {
    font-size: 16px;
    color: var(--primary-color);
}

.urundetay-dl-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.urundetay-dl-card-content strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.urundetay-dl-card-content span {
    font-size: 12px;
    color: var(--text-dark-low);
    line-height: 1.5;
}

.urundetay-dl-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.urundetay-dl-type {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: rgba(255, 192, 0, 0.1);
    border-radius: 1px;
    padding: 2px 6px;
}

.urundetay-dl-size {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    color: var(--text-dark-low);
}

.urundetay-dl-card-arrow {
    color: var(--text-dark-low);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.urundetay-dl-card:hover .urundetay-dl-card-arrow {
    color: var(--primary-color);
    transform: translateY(1px);
}

/* ============================================================
   CTA
   ============================================================ */
.urundetay-cta {
    background: #f5f5f5;
    padding: 64px 0 80px;
}

.urundetay-cta-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 52px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.urundetay-cta-glow {
    position: absolute;
    top: 0;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 192, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.urundetay-cta-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.urundetay-cta-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.urundetay-cta-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.urundetay-cta-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.urundetay-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.urundetay-cta-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.urundetay-cta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.urundetay-cta-item-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 192, 0, 0.1);
    border: 1px solid rgba(255, 192, 0, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urundetay-cta-item-icon i {
    font-size: 14px;
    color: var(--primary-color);
}

.urundetay-cta-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.urundetay-cta-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .urundetay-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urundetay-downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urundetay-mechanism-steps {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
    }

    .urundetay-mechanism-step:nth-child(4),
    .urundetay-mechanism-step-arrow:nth-child(3) {
        display: none;
    }
}

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

    .urundetay-stat:nth-child(2) {
        border-right: none;
    }

    .urundetay-stat:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .urundetay-stat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-right: none;
    }

    .urundetay-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .urundetay-intro-gallery {
        position: static;
    }

    .urundetay-specs-layout {
        grid-template-columns: 1fr;
    }

    .urundetay-mechanism-charts {
        grid-template-columns: 1fr;
    }

    .urundetay-mechanism-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .urundetay-mechanism-step-arrow {
        display: none;
    }

    .urundetay-mechanism-step:nth-child(4) {
        display: block;
    }

    .urundetay-cta-card {
        grid-template-columns: 1fr;
        padding: 40px 36px;
    }

    .urundetay-cta-side {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 24px;
    }
}

@media (max-width: 768px) {
    .urundetay-page .container {
        padding: 0 5%;
    }

    .urundetay-quickstats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urundetay-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .urundetay-stat:nth-child(even) {
        border-right: none;
    }

    .urundetay-stat:nth-child(3),
    .urundetay-stat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .urundetay-intro {
        padding: 60px 0;
    }

    .urundetay-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .urundetay-specs {
        padding: 60px 0;
    }

    .urundetay-mechanism {
        padding: 60px 0;
    }

    .urundetay-mechanism-step-num {
        font-size: 32px;
    }

    .urundetay-apps {
        padding: 60px 0;
    }

    .urundetay-apps-grid {
        grid-template-columns: 1fr;
    }

    .urundetay-downloads {
        padding: 60px 0;
    }

    .urundetay-downloads-grid {
        grid-template-columns: 1fr;
    }

    .urundetay-cta {
        padding: 48px 0 60px;
    }

    .urundetay-cta-card {
        padding: 32px 24px;
    }

    .urundetay-cta-actions {
        flex-direction: column;
    }

    .urundetay-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .urundetay-quickstats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urundetay-stat {
        padding: 24px 16px;
    }
}
