/* ── Organize Dijital Baskı Merkezi - CSS Design System ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary: #0ea5e9;
    --primary-hover: #0284c7;
    --primary-light: #eff6ff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-600: #d97706;
    --amber-800: #92400e;
    --emerald-50: #ecfdf5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --rose-50: #fff1f2;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
}

body {
    margin: 0; padding: 0;
    background: #f1f5f9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-900);
    line-height: 1.5;
}

/* ── Page wrapper ── */
.hs-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

/* ── Header ── */
.hs-header {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--slate-200);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}
.hs-header-title h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    letter-spacing: -0.5px;
}
.hs-header-title p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--slate-400);
}
.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* User Account Menu in Header */
.hs-user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── Section ── */
.hs-section {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.hs-section-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    cursor: pointer;
    user-select: none;
}
.hs-section-head:hover { background: var(--slate-100); }
.hs-section-icon {
    width: 2rem; height: 2rem;
    background: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.hs-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    flex: 1;
}
.hs-section-sub {
    font-size: 0.72rem;
    color: var(--slate-400);
    font-weight: 400;
}
.hs-section-chevron {
    color: var(--slate-400);
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.hs-section.collapsed .hs-section-chevron { transform: rotate(-90deg); }
.hs-section-body {
    overflow-x: auto;
}
.hs-section.collapsed .hs-section-body { display: none; }

/* ── Table ── */
.hs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    min-width: 480px;
}
.hs-table thead tr {
    background: var(--slate-900);
    color: #fff;
}
.hs-table thead th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.hs-table thead th:not(:first-child) { text-align: right; }
.hs-table tbody tr:nth-child(even) { background: var(--slate-50); }
.hs-table tbody tr:hover { background: var(--primary-light); }
.hs-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--slate-100);
    white-space: nowrap;
    vertical-align: middle;
}
.hs-table tbody td:not(:first-child) {
    text-align: right;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.hs-table tbody td:first-child {
    color: var(--slate-700);
    font-weight: 500;
}
.hs-table tfoot td {
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    color: var(--slate-400);
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}

/* ── Price Cell & Alerts ── */
.price-val {
    color: var(--slate-900);
}
.price-highlight {
    color: var(--primary);
    font-weight: 700;
}
.price-locked {
    color: var(--slate-400);
    font-size: 0.72rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--slate-100);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    white-space: normal;
}
.price-locked a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.price-locked a:hover {
    text-decoration: underline;
}

/* ── Sub-group header ── */
.hs-group-row td {
    background: var(--slate-100) !important;
    color: var(--slate-600);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.5rem 1rem !important;
    border-bottom: 1px solid var(--slate-200) !important;
}

/* ── Note box ── */
.hs-note {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background: var(--amber-50);
    border-top: 1px solid var(--amber-100);
    font-size: 0.72rem;
    color: var(--amber-800);
    line-height: 1.5;
}
.hs-note i { color: var(--amber-600); margin-top: 0.1rem; flex-shrink: 0; }

/* ── CTA link & buttons ── */
.hs-cta-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    flex-wrap: wrap;
}
.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}
.hs-btn:hover { background: var(--primary-hover); }
.hs-btn:active { transform: scale(0.98); }
.hs-btn.outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.hs-btn.outline:hover { background: var(--primary-light); }
.hs-btn.secondary {
    background: var(--slate-600);
}
.hs-btn.secondary:hover { background: var(--slate-700); }
.hs-btn.danger {
    background: var(--rose-500);
}
.hs-btn.danger:hover { background: var(--rose-600); }
.hs-btn.success {
    background: var(--emerald-500);
}
.hs-btn.success:hover { background: var(--emerald-600); }
.hs-btn.sm {
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    border-radius: 0.35rem;
}

/* ── Nav Toolbar ── */
.hs-nav {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    align-items: center;
}
.hs-nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-right: 0.25rem;
    white-space: nowrap;
}
.hs-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-600);
    background: var(--slate-100);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}
.hs-nav-btn:hover {
    background: #e0f2fe;
    color: var(--primary-hover);
    border-color: #bae6fd;
}
.hs-nav-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ── Form Card Designs (Login, Register) ── */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 1.5rem;
}
.auth-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.auth-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
    letter-spacing: -0.5px;
}
.auth-card p.subtitle {
    font-size: 0.82rem;
    color: var(--slate-400);
    margin-bottom: 1.5rem;
    margin-top: 0;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid var(--slate-200);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    color: var(--slate-900);
    transition: border-color 0.15s;
}
.form-control:focus {
    border-color: var(--primary);
}
textarea.form-control {
    resize: vertical;
    min-height: 80px;
}
.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--slate-600);
}
.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.auth-footer a:hover {
    text-decoration: underline;
}

/* Alert Notification Boxes */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.alert-danger {
    background: var(--rose-50);
    color: var(--rose-600);
    border: 1px solid #fecdd3;
}
.alert-success {
    background: var(--emerald-50);
    color: var(--emerald-600);
    border: 1px solid #a7f3d0;
}
.alert-warning {
    background: var(--amber-50);
    color: var(--amber-800);
    border: 1px solid var(--amber-100);
}

/* ── Member Panel & Admin Sidebar Layout ── */
.panel-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
@media (max-width: 992px) {
    .panel-grid {
        grid-template-columns: 1fr;
    }
}
.panel-sidebar {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.25rem;
    align-self: start;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu li {
    margin-bottom: 0.25rem;
}
.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.15s;
}
.sidebar-menu a:hover {
    background: var(--slate-100);
    color: var(--slate-900);
}
.sidebar-menu li.active a {
    background: var(--primary-light);
    color: var(--primary-hover);
}

.panel-content {
    min-width: 0; /* Prevents flexbox / grid blowouts */
}

/* Badges for status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.status-badge.info { background: #e0f2fe; color: #0369a1; }
.status-badge.warning { background: #fef3c7; color: #b45309; }
.status-badge.success { background: #d1fae5; color: #047857; }
.status-badge.danger { background: #ffe4e6; color: #be123c; }

/* ── Sipariş Zaman Çizelgesi (Timeline) Arayüzü ── */
.timeline {
    position: relative;
    padding-left: 1.75rem;
    margin: 1.5rem 0;
    border-left: 2px solid var(--slate-200);
}
.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: calc(-1.75rem - 6px);
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--slate-200);
    transition: all 0.2s;
}
.timeline-item.active .timeline-marker {
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-item.completed .timeline-marker {
    background: var(--emerald-500);
    box-shadow: 0 0 0 2px var(--emerald-50);
}
.timeline-content {
    background: var(--slate-50);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
}
.timeline-item.active .timeline-content {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(14, 165, 233, 0.05);
}
.timeline-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.2rem;
}
.timeline-time {
    font-size: 0.7rem;
    color: var(--slate-400);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.timeline-note {
    font-size: 0.75rem;
    color: var(--slate-600);
    margin-top: 0.35rem;
    font-style: italic;
    border-left: 2px solid var(--slate-300);
    padding-left: 0.5rem;
}

/* ── Sipariş Detay Arayüzü ── */
.order-detail-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.order-detail-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
}
.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1rem;
}
.order-info-item {
    font-size: 0.8rem;
}
.order-info-item label {
    display: block;
    font-weight: 600;
    color: var(--slate-400);
    margin-bottom: 0.2rem;
}
.order-info-item span {
    font-weight: 700;
    color: var(--slate-800);
}

/* Modal and Overlays */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-container {
    background: #fff;
    border-radius: 1rem;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px);
    transition: transform 0.2s ease-in-out;
}
.modal-overlay.open .modal-container {
    transform: translateY(0);
}
.modal-header {
    background: var(--slate-50);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}
.modal-close {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: var(--slate-400);
    cursor: pointer;
}
.modal-close:hover { color: var(--slate-900); }
.modal-body {
    padding: 1.25rem;
    max-height: 80vh;
    overflow-y: auto;
}

/* Responsive adjust */
@media (max-width: 640px) {
    .hs-page { padding: 1rem 0.5rem 3rem; }
    .hs-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .hs-header-title h1 { font-size: 1.3rem; }
    .hs-table { font-size: 0.72rem; }
    .hs-table thead th, .hs-table tbody td { padding: 0.5rem 0.65rem; }
    .hs-nav { gap: 0.3rem; padding: 0.5rem; }
    .hs-nav-btn { font-size: 0.68rem; padding: 0.35rem 0.55rem; }
    .auth-card { padding: 1.5rem; }
}

/* ── B2B Corporate Landing Page Styles ── */
.landing-hero {
    position: relative;
    background: radial-gradient(circle at 10% 20%, var(--slate-800) 0%, var(--slate-900) 90%);
    color: #fff;
    padding: 6rem 1rem;
    text-align: center;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.3);
}
.landing-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.landing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.landing-hero p {
    font-size: 1.15rem;
    color: var(--slate-300);
    margin: 0 0 2rem;
    line-height: 1.6;
}
.hero-slogan-banner {
    display: inline-block;
    background: var(--rose-600);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
    letter-spacing: -0.3px;
    animation: glow-pulse 3s infinite alternate;
}
@keyframes glow-pulse {
    0% { box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4); }
    100% { box-shadow: 0 4px 25px rgba(225, 29, 72, 0.7); }
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-actions .hs-btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.85rem;
    border-radius: 0.75rem;
}

/* Trust Indicators Section */
.section-headline {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-headline h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
    color: var(--slate-900);
}
.section-headline p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--slate-600);
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1199px) and (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}
.stat-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -10px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.stat-icon {
    width: 3.2rem;
    height: 3.2rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.stat-card:hover .stat-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.stat-info {
    flex: 1;
}
.stat-info h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--slate-900);
}
.stat-info p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--slate-600);
    line-height: 1.5;
}

/* Hız ve Zamanında Teslimat Highlight Card */
.stat-card.highlight-card {
    border: 2px solid var(--rose-500);
    background: linear-gradient(135deg, #fff 50%, var(--rose-50) 100%);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.1);
}
.stat-card.highlight-card:hover {
    box-shadow: 0 20px 25px -10px rgba(244, 63, 94, 0.2);
    border-color: var(--rose-600);
}
.stat-card.highlight-card .stat-icon {
    background: var(--rose-600);
    color: #fff;
}
.stat-card.highlight-card:hover .stat-icon {
    background: var(--rose-500);
    transform: scale(1.1) rotate(15deg);
}

/* Machine Park Gallery */
.machines-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 1200px) {
    .machines-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1199px) and (min-width: 768px) {
    .machines-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .machines-container {
        grid-template-columns: 1fr;
    }
}
.machine-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.machine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -10px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.machine-image-wrapper {
    height: 180px;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.machine-visual-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--slate-800) 0%, var(--slate-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.machine-visual-bg i {
    font-size: 5rem;
    transition: all 0.3s;
}
.machine-card:hover .machine-visual-bg i {
    transform: scale(1.1) rotate(3deg);
    color: rgba(14, 165, 233, 0.12);
}
.machine-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
    padding: 1.25rem 1.25rem 0.75rem;
    color: #fff;
}
.machine-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.35rem;
}
.machine-image-overlay h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.machine-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.machine-body p {
    margin: 0 0 1.25rem;
    font-size: 0.8rem;
    color: var(--slate-600);
    line-height: 1.5;
}
.machine-specs {
    border-top: 1px solid var(--slate-100);
    padding-top: 0.75rem;
    margin-top: auto;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    margin-bottom: 0.35rem;
}
.spec-row:last-child { margin-bottom: 0; }
.spec-label { color: var(--slate-400); font-weight: 500; }
.spec-value { color: var(--slate-800); font-weight: 700; }

/* Process Timeline (Horizontal on desktop, vertical on mobile) */
.timeline-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
}
.timeline-flow-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.timeline-flow-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -5px rgba(0,0,0,0.05);
}
.flow-step-num {
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--slate-900);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.timeline-flow-card:hover .flow-step-num {
    background: var(--primary);
    transform: scale(1.1);
}
.flow-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}
.timeline-flow-card h3 {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--slate-900);
}
.timeline-flow-card p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--slate-600);
    line-height: 1.5;
}

/* Online Sipariş Takip Demosu */
.demo-card-container {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
.demo-badge-banner {
    display: inline-block;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border: 1px solid #a7f3d0;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}
.demo-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
}
@media (max-width: 992px) {
    .demo-grid-wrapper { grid-template-columns: 1fr; }
}
.demo-mockup {
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -10px rgba(0,0,0,0.05);
}
.demo-mockup-header {
    background: var(--slate-900);
    color: #fff;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
}
.demo-mockup-body {
    padding: 1.25rem;
    background: var(--slate-50);
}
.demo-status-history {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--slate-200);
    margin: 1rem 0;
}
.demo-history-item {
    position: relative;
    margin-bottom: 1.25rem;
}
.demo-history-item:last-child { margin-bottom: 0; }
.demo-marker {
    position: absolute;
    left: calc(-1.5rem - 6px);
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--slate-200);
}
.demo-history-item.active .demo-marker {
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.demo-history-item.completed .demo-marker {
    background: var(--emerald-500);
    box-shadow: 0 0 0 2px var(--emerald-50);
}
.demo-history-content {
    background: #fff;
    padding: 0.6rem 0.85rem;
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
}
.demo-history-item.active .demo-history-content {
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(14, 165, 233, 0.05);
}
.demo-history-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--slate-800);
}
.demo-history-time {
    font-size: 0.65rem;
    color: var(--slate-400);
    font-weight: 500;
    margin-top: 0.1rem;
}

/* B2B Partner Area */
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}
@media (max-width: 768px) {
    .b2b-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.b2b-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.b2b-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--slate-700);
}
.b2b-features li i {
    color: var(--emerald-600);
    font-size: 1rem;
    margin-top: 0.15rem;
}

/* Final Call To Action Banner */
.cta-banner-card {
    background: radial-gradient(circle at right top, var(--slate-800) 0%, var(--slate-900) 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(15,23,42,0.1);
    margin-bottom: 2rem;
}
.cta-banner-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
}
.cta-banner-card p {
    font-size: 1.05rem;
    color: var(--slate-300);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .landing-hero h1 { font-size: 2.2rem; }
    .landing-hero p { font-size: 1rem; }
    .hero-slogan-banner { font-size: 0.95rem; padding: 0.6rem 1.2rem; }
    .machines-container { grid-template-columns: 1fr; }
    .cta-banner-card { padding: 2rem 1rem; }
    .cta-banner-card h2 { font-size: 1.5rem; }
}
