/* ============================================
   S1 PDKS - Personel Devam Kontrol Sistemi
   ============================================ */

/* Hero Section */
.pdks-hero {
    position: relative;
  
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    overflow: hidden;
}

.pdks-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-clock-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 30%);
}

.hero-clock-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0f172a 0%, #1c1917 50%, #0f172a 100%);
}

.pdks-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pdks-hero-text {
    max-width: 600px;
}

.pdks-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 100px;
    color: #fb923c;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pdks-hero-title {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: #f8fafc;
    margin-bottom: 24px;
}

.pdks-hero-title .title-line {
    display: block;
}

.pdks-hero-title .title-gradient {
    display: block;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pdks-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 32px;
}

.pdks-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fb923c;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pdks-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(248, 250, 252, 0.3);
    color: #f8fafc;
}

.btn-outline-light:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: rgba(248, 250, 252, 0.5);
}

/* Hero Visual - Time Tracker Mockup */
.pdks-hero-visual {
    position: relative;
}

.time-tracker-mockup {
    background: rgba(28, 25, 23, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.tracker-display {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border-radius: 16px;
    margin-bottom: 24px;
}

.tracker-time {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
    text-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
}

.tracker-date {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 8px;
}

.tracker-employee {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
}

.employee-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.employee-info {
    flex: 1;
}

.employee-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
}

.employee-dept {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.check-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.check-status.in {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.tracker-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tracker-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.tracker-btn.btn-in {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.tracker-btn.btn-in:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.tracker-btn.btn-out {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tracker-btn.btn-out:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Tab Navigation */
.inner-page-tabs {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.tabs-wrapper {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s;
}

.tab-link:hover {
    color: #f8fafc;
    background: rgba(248, 250, 252, 0.05);
}

.tab-link.active {
    color: #fb923c;
    background: rgba(249, 115, 22, 0.1);
}

.tab-link.tab-cta {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 600;
}

.tab-link.tab-cta:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 100px;
    color: #f97316;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-large {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-title-large .text-gradient {
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Benefits Section */
.pdks-benefits {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.benefit-card.benefit-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.benefit-card.benefit-large .benefit-icon {
    margin-bottom: 0;
}

.benefit-card:not(.benefit-large) .benefit-icon {
    width: 56px;
    height: 56px;
}

.gradient-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.benefit-content h3,
.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-content p,
.benefit-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
}

.benefit-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.benefit-stat .stat-value {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #f97316;
}

.benefit-stat .stat-desc {
    font-size: 14px;
    color: #64748b;
}

/* How It Works Section */
.pdks-how-it-works {
    background: #0f172a;
}

.pdks-how-it-works .section-title-large {
    color: #f8fafc;
}

.pdks-how-it-works .section-desc {
    color: #94a3b8;
}

.workflow-diagram {
    margin-bottom: 60px;
}

.workflow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.workflow-node {
    text-align: center;
    padding: 32px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    min-width: 180px;
    transition: all 0.3s;
}

.workflow-node:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.node-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
}

.workflow-node h4 {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.workflow-node p {
    font-size: 14px;
    color: #94a3b8;
}

.workflow-arrow {
    color: rgba(249, 115, 22, 0.3);
}

.sub-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
    margin-bottom: 32px;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.arch-card {
    text-align: center;
    padding: 24px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.arch-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.arch-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
}

.arch-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 4px;
}

.arch-card p {
    font-size: 13px;
    color: #94a3b8;
}

/* System Types Section */
.pdks-types {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.types-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.type-card {
    position: relative;
    background: white;
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.type-card.featured {
    border-color: #f97316;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.type-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.type-visual {
    padding: 40px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
}

.type-content {
    padding: 32px;
}

.type-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.type-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.type-features li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.type-features li:last-child {
    border-bottom: none;
}

.feature-name {
    font-size: 14px;
    color: #64748b;
}

.feature-value {
    font-size: 13px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
}

.feature-value.low {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.feature-value.medium {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.feature-value.high {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-tags span {
    padding: 4px 12px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 100px;
    font-size: 12px;
    color: #f97316;
}

/* Selection Section */
.pdks-selection {
    background: #0f172a;
}

.pdks-selection .section-title-large {
    color: #f8fafc;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.selection-card {
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.selection-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.selection-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(249, 115, 22, 0.1);
}

.selection-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
    margin-bottom: 20px;
}

.selection-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.selection-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.selection-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selection-checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.selection-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fb923c;
    font-weight: bold;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 32px;
    overflow-x: auto;
}

.comparison-table-wrapper .sub-section-title {
    margin-bottom: 24px;
}

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

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-table th {
    font-size: 14px;
    font-weight: 600;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.5);
}

.comparison-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.comparison-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.comparison-table td {
    font-size: 14px;
    color: #94a3b8;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: #f8fafc;
}

.comparison-table td.low {
    color: #10b981;
}

.comparison-table td.medium {
    color: #f97316;
}

.comparison-table td.high {
    color: #3b82f6;
}

/* Integrations Section */
.pdks-integrations {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.integrations-showcase {
    display: grid;
    gap: 40px;
    margin-bottom: 48px;
}

.integration-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.brand-logo-item {
    width: 120px;
    height: 60px;
    background: white;
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s;
}

.brand-logo-item:hover {
    border-color: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.brand-logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo-item.text-logo {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.02));
}

.brand-logo-item.text-logo span {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
}

.integration-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 32px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 16px;
}

.int-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #f97316;
}

/* CTA Section */
.pdks-cta {
    background: #0f172a;
    padding: 80px 0;
}

.pdks-cta-box {
    position: relative;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pdks-cta-box .cta-content {
    position: relative;
}

.pdks-cta-box h2 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pdks-cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.cta-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-white {
    background: white;
    color: #ea580c;
    font-weight: 600;
}

.btn-white:hover {
    background: #f8fafc;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pdks-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card.benefit-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .workflow-row {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .architecture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .types-showcase {
        grid-template-columns: 1fr;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .pdks-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 32px;
    }
    
    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pdks-hero {
        padding: 10px 0 60px;
    }
    
    .pdks-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pdks-hero-actions {
        flex-direction: column;
    }
    
    .pdks-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .architecture-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
    }
    
    .brand-logos {
        justify-content: center;
    }
    
    .integration-features {
        flex-direction: column;
        align-items: center;
    }
}









#pagetabs.inner-page-tabs,
.inner-page-tabs {
    position: sticky;
    top: 90px; /* header yüksekliğine göre ayarla */
    z-index: 50;
     
    backdrop-filter: blur(8px);
}
