/* 
 * Webze Modern White Theme Stylesheet
 * Premium Design System & Micro-Animations
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --primary-glow: rgba(37, 99, 235, 0.1);
    --secondary-blue: #0284c7;
    --gradient-blue: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
    --gradient-text: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Layout Tokens */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --header-height: 80px;
    --container-max-width: 1280px;
    
    /* Shadows & Radii */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(37, 99, 235, 0.04), 0 4px 6px -2px rgba(37, 99, 235, 0.02);
    --shadow-premium: 0 20px 40px -15px rgba(0,0,0,0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    max-width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Header & Navbar */
.header-multi {
    width: 100%;
    z-index: 1000;
    position: relative;
}

/* Tier 1: Announcement Bar */
.announcement-bar {
    background: var(--ann-bg,#0b1329);
    color: var(--ann-text,#ffffff);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.announcement-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.announcement-text { color: var(--ann-text,#94a3b8);
}
.announcement-highlight {
    color: var(--ann-hi,#fbbf24);
    font-weight: 700;
    margin-left: 4px;
}
.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-variant-numeric: tabular-nums;
}
.countdown-unit {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.countdown-num {
    font-weight: 700;
    color: var(--ann-timer-text,#fbbf24); background:var(--ann-timer-bg,rgba(255,255,255,.08));
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 24px;
    text-align: center;
}
.countdown-lbl {
    font-size: 0.7rem;
    color: #64748b;
}
.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px dashed var(--ann-promo-border,rgba(251,191,36,.4));
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--ann-promo-bg,rgba(251,191,36,.05));
    cursor: pointer;
    transition: var(--transition-fast);
}
.promo-code-box:hover {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}
.promo-code {
    font-weight: 700;
    color: var(--ann-promo-text,#fbbf24);
    letter-spacing: 0.05em;
}
.promo-copy-icon {
    width: 14px;
    height: 14px;
    stroke: #94a3b8;
    fill: none;
}
.promo-code-box:hover .promo-copy-icon {
    stroke: #fbbf24;
}
.announcement-btn {
    background: var(--ann-btn-bg,#0ea5e9); color:var(--ann-btn-text,#fff);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.announcement-btn:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

/* Tier 2: Subbar Header */
.subbar {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8rem;
}
.subbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.subbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-weight: 500;
}
.subbar-link:hover {
    color: var(--primary);
}
.subbar-link svg {
    width: 14px;
    height: 14px;
}
.badge-count {
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: var(--radius-full);
}
.subbar button.subbar-link{border:0;background:transparent;cursor:pointer;font:inherit}
.header-cart-backdrop,.header-email-modal{position:fixed;inset:0;z-index:1400;background:rgba(15,23,42,.45);backdrop-filter:blur(3px);opacity:0;pointer-events:none;transition:.25s}.cart-open .header-cart-backdrop,.email-open .header-email-modal{opacity:1;pointer-events:auto}
/* ===== Shopping Cart Drawer ===== */
.header-cart-drawer{position:fixed;z-index:1450;top:0;right:0;display:flex;flex-direction:column;width:min(420px,100%);height:100vh;background:#fff;box-shadow:-25px 0 60px -20px rgba(15,23,42,.35);transform:translateX(100%);transition:transform .32s cubic-bezier(.4,0,.2,1)}
.cart-open .header-cart-drawer{transform:none}
.header-cart-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:22px 22px 20px;border-bottom:1px solid #eef2f7}
.header-cart-title{display:flex;align-items:center;gap:13px}
.header-cart-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:linear-gradient(135deg,#2563eb,#0284c7);color:#fff;flex:none}
.header-cart-icon svg{width:21px;height:21px}
.header-cart-title small{display:block;color:#94a3b8;font-size:.62rem;font-weight:800;letter-spacing:.14em}
.header-cart-title h3{margin:2px 0 0;color:#0f172a;font-size:1.18rem;letter-spacing:-.02em}
.header-cart-close{display:grid;place-items:center;width:36px;height:36px;border:0;border-radius:10px;background:#f1f5f9;color:#475569;cursor:pointer;transition:.18s}
.header-cart-close:hover{background:#e2e8f0;color:#0f172a}
.header-cart-close svg{width:18px;height:18px}
.header-cart-items{flex:1;overflow-y:auto;display:flex;flex-direction:column;gap:11px;padding:20px 22px}
.header-cart-items article{display:flex;align-items:center;gap:13px;border:1px solid #eef2f7;border-radius:15px;padding:13px;background:#fcfdff;transition:.18s}
.header-cart-items article:hover{border-color:#dbe4f0;box-shadow:0 10px 26px -20px rgba(15,23,42,.4)}
.header-cart-item-thumb{display:grid;place-items:center;width:46px;height:46px;border-radius:12px;background:#eff6ff;color:#2563eb;flex:none}
.header-cart-item-thumb svg{width:22px;height:22px}
.header-cart-item-info{flex:1;min-width:0}
.header-cart-item-info strong{display:block;color:#0f172a;font-size:.9rem;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.header-cart-item-info small{display:block;color:#94a3b8;font-size:.74rem;margin-top:2px}
.header-cart-item-side{display:flex;flex-direction:column;align-items:flex-end;gap:7px;flex:none}
.header-cart-item-side b{color:#0f172a;font-size:.92rem;white-space:nowrap}
.header-cart-item-side form{margin:0}
.header-cart-item-side button{display:grid;place-items:center;width:28px;height:28px;border:0;border-radius:8px;background:#fef2f2;color:#ef4444;cursor:pointer;transition:.18s}
.header-cart-item-side button:hover{background:#ef4444;color:#fff}
.header-cart-item-side button svg{width:15px;height:15px}
.header-cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;text-align:center;margin:auto;padding:40px 20px}
.header-cart-empty span{display:grid;place-items:center;width:74px;height:74px;border-radius:50%;background:#f1f5f9;color:#94a3b8;margin-bottom:8px}
.header-cart-empty span svg{width:34px;height:34px}
.header-cart-empty strong{color:#0f172a;font-size:1.05rem}
.header-cart-empty p{margin:0;color:#94a3b8;font-size:.85rem}
.header-cart-browse{margin-top:12px;color:#2563eb;font-weight:700;font-size:.85rem;text-decoration:none}
.header-cart-browse:hover{text-decoration:underline}
.header-cart-foot{display:flex;flex-direction:column;gap:12px;padding:20px 22px;border-top:1px solid #eef2f7;background:#fff}
.header-cart-total{display:flex;align-items:center;justify-content:space-between}
.header-cart-total span{color:#64748b;font-size:.9rem;font-weight:600}
.header-cart-total strong{color:#0f172a;font-size:1.4rem;letter-spacing:-.02em}
.header-cart-checkout{display:flex;align-items:center;justify-content:center;gap:9px;padding:15px;border-radius:13px;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;font-weight:800;font-size:.92rem;text-decoration:none;box-shadow:0 14px 30px -12px rgba(37,99,235,.6);transition:.2s}
.header-cart-checkout:hover{transform:translateY(-2px);box-shadow:0 18px 36px -12px rgba(37,99,235,.7)}
.header-cart-checkout svg{width:18px;height:18px}
.header-cart-foot form{margin:0}
.header-cart-clear{width:100%;border:0;background:transparent;color:#94a3b8;font-size:.82rem;font-weight:600;cursor:pointer;padding:2px;transition:.18s}
.header-cart-clear:hover{color:#ef4444}
/* ===== Email Modal ===== */
.header-email-modal{display:grid;place-items:center}.header-email-card{position:relative;width:min(420px,calc(100% - 30px));border-radius:16px;padding:24px;background:#fff}.header-email-card span{color:#2563eb;font-size:.7rem;font-weight:800}.header-email-card h3{margin:8px 0}.header-email-card p{color:#64748b}.header-email-card a{color:#2563eb;font-weight:800}.header-email-close{position:absolute;top:10px;right:14px;border:0;background:transparent;font-size:1.8rem;cursor:pointer}

/* Tier 3: Main Navigation Bar */
.mainbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 85px;
    transition: var(--transition-normal);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.mainbar.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    height: 70px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}
.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown-icon {
    width: 12px;
    height: 12px;
    transition: var(--transition-fast);
}
.nav-item-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    padding: 12px;
    min-width: 240px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    border-radius: var(--radius-sm);
}
.dropdown-link {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.dropdown-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.dropdown-link-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

/* Mega Menu (Kurumsal) */
.nav-item-mega {
    position: static;
}

.dropdown-menu.mega-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    min-width: 600px;
    padding: 22px;
    left: 0;
    right: auto;
    transform: translateY(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 160%);
    box-shadow: 0 30px 60px -18px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.02);
}

/* Left-anchored variant (default — Ürünlerimiz, Hizmetlerimiz) */
.dropdown-menu.mega-menu.mega-menu--start {
    left: 0;
    right: auto;
}

/* Right-anchored variant (Kurumsal — opens flush under its trigger) */
.dropdown-menu.mega-menu.mega-menu--end {
    left: auto;
    right: 0;
}

/* Single-column variant (Ürünlerimiz) */
.dropdown-menu.mega-menu.mega-menu--single {
    grid-template-columns: 1fr;
    min-width: 320px;
}

/* Reveal */
.nav-item-dropdown:hover > .dropdown-menu.mega-menu,
.nav-item-mega:hover > .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

/* Soft gradient divider between the two columns */
.dropdown-menu.mega-menu:not(.mega-menu--single) .mega-menu-column:first-child {
    padding-right: 22px;
}
.dropdown-menu.mega-menu:not(.mega-menu--single) .mega-menu-column:first-child::after {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-color) 18%, var(--border-color) 82%, transparent);
}

.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 2px 10px 8px;
}
.mega-menu-title::before {
    content: '';
    width: 14px;
    height: 2px;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
}

.mega-menu-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    overflow: hidden;
    transition: background 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Left accent bar grows in on hover */
.mega-menu-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 58%;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-card:hover {
    background: var(--primary-light);
    transform: translateX(3px);
}
.mega-menu-card:hover::before {
    transform: translateY(-50%) scaleY(1);
}
.mega-menu-card:hover .mega-card-arrow {
    color: var(--primary);
    transform: translate(2px, -2px);
    opacity: 1;
}

.mega-card-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--bg-tertiary), #ffffff);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.mega-menu-card:hover .mega-card-icon-wrapper {
    background: var(--gradient-blue);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
    transform: scale(1.05);
}

.mega-icon {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
}

.mega-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.mega-card-title {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.mega-card-desc {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-card-arrow {
    width: 14px;
    height: 14px;
    color: var(--border-hover);
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Teal CTA Button */
.mega-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: auto;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.mega-menu-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
    color: #ffffff;
}

/* Blue CTA Button variant */
.mega-menu-btn.mega-menu-btn--blue {
    background: var(--gradient-blue);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.mega-menu-btn.mega-menu-btn--blue:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mega-menu-btn .btn-send-icon {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    flex-shrink: 0;
}

.mega-menu-btn .btn-text {
    flex: 1;
}

.mega-menu-btn .btn-arrow-icon {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mega-menu-btn:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
}

/* Tier 3: Action Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.action-icon-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-icon-btn:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}
.action-icon-btn svg {
    width: 20px;
    height: 20px;
}
.action-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.action-badge.blue { background: var(--primary); }
.action-badge.red { background: #ef4444; }

/* Profile Button */
.profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}
.profile-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}
.profile-btn-admin {
    background: var(--gradient-blue);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.55);
    margin-right: 6px;
}
.profile-btn-admin .profile-avatar {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}
.profile-btn-admin:hover {
    background: var(--gradient-blue);
    border-color: transparent;
    color: #ffffff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.profile-btn-admin:hover .profile-avatar {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}
.profile-avatar {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-avatar svg {
    width: 12px;
    height: 12px;
}
.header-account { position: relative; }
.header-account-chevron { width: 12px; height: 12px; transition: transform .2s ease; }
.header-account.open .header-account-chevron { transform: rotate(180deg); }
.header-account-menu {
    position: absolute;
    z-index: 1200;
    top: calc(100% + 16px);
    right: 0;
    width: 340px;
    overflow: hidden;
    border: 1px solid #e5eaf2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 50px -16px rgba(15, 23, 42, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
}
.header-account-menu::before {
    position: absolute;
    top: -6px;
    right: 36px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid #e5eaf2;
    border-left: 1px solid #e5eaf2;
    content: "";
    transform: rotate(45deg);
}
.header-account.open .header-account-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Top summary card */
.header-account-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 18px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #eef1f6;
}
.header-account-avatar {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.02em;
    box-shadow: 0 8px 18px -6px rgba(37, 99, 235, .45);
}
.header-account-summary strong, .header-account-summary small { display: block; }
.header-account-summary strong { color: #0f172a; font-size: .95rem; font-weight: 800; letter-spacing: -.015em; }
.header-account-summary small { margin-top: 3px; color: #94a3b8; font-size: .74rem; font-weight: 500; letter-spacing: .01em; }

/* Link list */
.header-account-links { display: flex; flex-direction: column; gap: 2px; padding: 10px 10px 6px; }
.header-account-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 0;
    border-radius: 11px;
    padding: 10px 11px;
    background: transparent;
    color: #475569;
    font: inherit;
    font-size: .86rem;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.header-account-links a:hover { background: #f5f8fc; color: #0f172a; }
.header-account-links a > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    transition: background .18s ease, transform .18s ease;
}
.header-account-links a:hover > span { background: #dbeafe; transform: scale(1.05); }
.header-account-links a > span svg { width: 17px; height: 17px; }
.header-account-links a > div { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.header-account-links a > div strong { color: #0f172a; font-size: .86rem; font-weight: 700; letter-spacing: -.005em; line-height: 1.25; }
.header-account-links a > div small { color: #94a3b8; font-size: .7rem; font-weight: 500; margin-top: 2px; }
.header-account-links a:hover > div strong { color: var(--primary); }

/* Wallet row — gradient pill on right */
.header-account-balance > b {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 999px;
    margin-left: auto;
    box-shadow: 0 4px 10px -2px rgba(245, 158, 11, .35);
    letter-spacing: -.01em;
    flex-shrink: 0;
}
.header-account-balance:hover > b { transform: scale(1.04); }

/* Logout */
.header-account-logout { margin: 6px 10px 10px; padding: 0; }
.header-account-logout button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 11px 12px;
    background: #fef2f2;
    color: #dc2626;
    font: inherit;
    font-size: .86rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease;
}
.header-account-logout button:hover { background: #fee2e2; }
.header-account-logout button > span:first-child {
    display: grid;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 11px;
    background: #fff;
    color: #dc2626;
    box-shadow: 0 2px 6px -2px rgba(220, 38, 38, .25);
}
.header-account-logout button > span:first-child svg { width: 17px; height: 17px; }

@media (max-width: 640px) {
    .header-account-menu { position: fixed; top: 76px; right: 12px; left: 12px; width: auto; }
    .profile-btn { padding: 6px 10px; }
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* Mobile Nav Menu */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 86%;
        max-width: 380px;
        height: 100vh;
        background: var(--bg-primary);
        box-shadow: -10px 0 40px rgba(15,23,42,0.12);
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 2px;
        padding: 78px 16px 28px;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
        z-index: 1050;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    body.nav-open { overflow: hidden; }

    /* Mobil menü öğeleri tam genişlik / statik akış */
    .nav-menu .nav-item,
    .nav-menu .nav-item-dropdown,
    .nav-menu .nav-item-mega {
        position: static;
        width: 100%;
    }
    .nav-menu .nav-link {
        width: 100%;
        padding: 13px 14px;
        border-radius: 11px;
        justify-content: space-between;
        font-size: 0.95rem;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-item-dropdown.open > .nav-link {
        background: var(--bg-secondary);
    }
    .nav-menu .nav-dropdown-icon { transition: transform .25s ease; }
    .nav-menu .nav-item-dropdown.open .nav-dropdown-icon,
    .nav-menu .nav-item-mega.open .nav-dropdown-icon { transform: rotate(180deg); }

    /* Açılır menüler: hover popup yerine inline akordeon */
    .nav-menu .dropdown-menu,
    .nav-menu .dropdown-menu.mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 2px 4px 8px 8px;
        margin: 0;
    }
    .nav-menu .nav-item-dropdown.open > .dropdown-menu,
    .nav-menu .nav-item-mega.open > .dropdown-menu {
        display: block;
    }
    /* Hover ile açılmayı mobilde iptal et (sadece .open ile açılır) */
    .nav-menu .nav-item-dropdown:hover > .dropdown-menu,
    .nav-menu .nav-item-mega:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    .nav-menu .dropdown-menu.mega-menu { grid-template-columns: 1fr; gap: 4px; }
    .nav-menu .mega-menu-column { padding: 0 !important; border: 0 !important; }
    .nav-menu .mega-menu-column::after { display: none !important; }
    .nav-menu .mega-menu-title { margin: 8px 0 2px; }

    .burger-btn {
        display: flex;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Üst yardımcı menü (subbar): taşma yerine yatay kaydırma şeridi */
    .subbar { padding: 6px 0; }
    .subbar-container {
        justify-content: flex-start;
        gap: 14px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .subbar-container::-webkit-scrollbar { display: none; }
    .subbar-links {
        flex: 0 0 auto;
        gap: 14px;
    }
    .subbar-link {
        white-space: nowrap;
        font-size: 0.76rem;
    }
}

/* Küçük ekranlarda header sağ aksiyonları kompakt (metinler gizli, sadece ikon/avatar) */
@media (max-width: 600px) {
    .header-actions { gap: 8px; }
    .profile-btn { padding: 6px; gap: 0; }
    .profile-btn > span:not(.profile-avatar),
    .profile-btn-admin > span:not(.profile-avatar) { display: none; }
    .profile-btn .header-account-chevron { display: none; }
}

/* Mega Menu Responsive */
@media (max-width: 768px) {
    .dropdown-menu.mega-menu {
        grid-template-columns: 1fr;
        min-width: unset;
        width: 100%;
        right: 0;
        left: 0;
        padding: 18px;
        gap: 12px;
    }
    .dropdown-menu.mega-menu:not(.mega-menu--single) .mega-menu-column:first-child {
        padding-right: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border-color);
    }
    .dropdown-menu.mega-menu:not(.mega-menu--single) .mega-menu-column:first-child::after {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 56px;
    padding-bottom: 88px;
    background: radial-gradient(circle at 82% 12%, rgba(37, 99, 235, 0.06) 0%, transparent 46%),
                radial-gradient(circle at 8% 88%, rgba(2, 132, 199, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

/* ===== Modern Hero Showcase Slider ===== */
.hero-slider {
    position: relative;
    padding: 42px 46px 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 30px;
    box-shadow: var(--shadow-premium), 0 40px 90px -50px rgba(37, 99, 235, 0.30);
    overflow: hidden;
}
.hero-slider::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.14), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-track {
    position: relative;
    z-index: 1;
    min-height: 480px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}
.hero-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}

/* Entrance animations for the active slide */
.hero-slide.active .hero-copy { animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-slide.active .hero-media { animation: heroPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
@keyframes heroPop {
    from { opacity: 0; transform: translateY(22px) scale(0.96); }
    to { opacity: 1; transform: none; }
}

/* Left: copy column */
.hero-copy { min-width: 0; }
.hero-copy .hero-title {
    font-size: 3.1rem;
    line-height: 1.08;
    margin-bottom: 18px;
}
.hero-copy .hero-subtitle {
    font-size: 1.08rem;
    margin-bottom: 30px;
    max-width: 34rem;
}
.hero-copy .hero-btns { margin-bottom: 30px; }
.hero-play-btn svg {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    color: var(--primary);
}

/* Inline mini stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat strong {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Badge color variants */
.badge.badge-cyan {
    background: rgba(2, 132, 199, 0.1);
    color: var(--secondary-blue);
    border-color: rgba(2, 132, 199, 0.15);
}
.badge.badge-cyan .badge-dot { background: var(--secondary-blue); }
.badge.badge-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.15);
}
.badge.badge-green .badge-dot { background: #10b981; }

/* Right: media column */
.hero-media {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.hero-glow {
    position: absolute;
    z-index: 0;
    width: 72%;
    height: 72%;
    left: 14%;
    top: 16%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
    filter: blur(46px);
    border-radius: 50%;
    pointer-events: none;
}
.hero-figure {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 34px 60px -28px rgba(15, 23, 42, 0.38);
}
.hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating accents */
.hero-chip {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: -16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}
.hero-chip i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}
.hero-float-card {
    position: absolute;
    z-index: 3;
    bottom: 22px;
    right: -18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.4);
}
.hero-float-ico {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
}
.hero-float-ico svg { width: 20px; height: 20px; }
.hero-float-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}
.hero-float-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Per-slide accent tones */
.hero-slide.tone-cyan .hero-chip i { background: var(--secondary-blue); box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.14); }
.hero-slide.tone-cyan .hero-glow { background: radial-gradient(circle, rgba(2, 132, 199, 0.26), transparent 70%); }
.hero-slide.tone-cyan .hero-float-ico { background: rgba(2, 132, 199, 0.12); color: var(--secondary-blue); }
.hero-slide.tone-green .hero-chip i { background: #10b981; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14); }
.hero-slide.tone-green .hero-glow { background: radial-gradient(circle, rgba(16, 185, 129, 0.24), transparent 70%); }
.hero-slide.tone-green .hero-float-ico { background: rgba(16, 185, 129, 0.12); color: #059669; }

/* Controls bar */
.hero-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
}
.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-dot {
    position: relative;
    width: 30px;
    height: 5px;
    padding: 0;
    border: none;
    border-radius: var(--radius-full);
    background: var(--border-color);
    cursor: pointer;
    overflow: hidden;
    transition: width var(--transition-normal), background var(--transition-normal);
}
.hero-dot.active {
    width: 66px;
    background: rgba(37, 99, 235, 0.18);
}
.hero-dot-progress {
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
}
.hero-dot.active .hero-dot-progress {
    animation: heroDotFill var(--hero-duration, 6000ms) linear forwards;
}
.hero-slider.is-paused .hero-dot.active .hero-dot-progress {
    animation-play-state: paused;
}
@keyframes heroDotFill {
    from { width: 0; }
    to { width: 100%; }
}
.hero-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-count {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.hero-count b { color: var(--text-primary); }
.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}
.hero-arrow:hover {
    background: var(--gradient-blue);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32);
}
.hero-arrow svg { width: 20px; height: 20px; }

/* Hero responsive */
@media (max-width: 991px) {
    .hero-slider { padding: 28px 22px 20px; border-radius: 24px; }
    .hero-track { min-height: 0; }
    .hero-slide {
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    }
    .hero-slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-copy .hero-title { font-size: 2.25rem; }
    .hero-copy .hero-subtitle { margin-bottom: 26px; }
    .hero-stats { gap: 22px; flex-wrap: wrap; }
    .hero-chip { left: 6px; }
    .hero-float-card { right: 8px; }
    .hero-controls { margin-top: 24px; }
}

@media (max-width: 560px) {
    .hero-copy .hero-title { font-size: 1.9rem; }
    .hero-copy .hero-subtitle { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stat strong { font-size: 1.35rem; }
    .hero-float-card { padding: 10px 13px; gap: 10px; }
    .hero-float-ico { width: 32px; height: 32px; }
    .hero-count { display: none; }
    .hero-figure { border-radius: 18px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: pulseGlow 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

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

.hero-stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mockup Display */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-container {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    transition: var(--transition-normal);
}

.mockup-container:hover {
    transform: translateY(-5px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--bg-tertiary);
    padding-bottom: 12px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

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

.mockup-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 10px;
}

.mockup-chart-bar {
    flex: 1;
    background: var(--primary-light);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
    transition: var(--transition-slow);
}

.mockup-chart-bar:hover {
    background: var(--primary);
}

.mockup-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-full);
    z-index: 1;
    top: -50px;
    right: -50px;
    filter: blur(20px);
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }

    .home-campaign-grid,
    .home-campaign-card {
        grid-template-columns: 1fr;
    }

    .home-campaign-card img {
        min-height: 210px;
    }
}

/* Sections Global */
.section {
    padding: 100px 0;
}

.section-bg {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.campaign-home-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

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

.home-campaign-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.home-campaign-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.home-campaign-card img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.home-campaign-card div {
    padding: 28px;
}

.home-campaign-card span {
    display: inline-flex;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    padding: 7px 10px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-campaign-card h3 {
    margin: 16px 0 10px;
    color: var(--text-primary);
    font-size: 1.35rem;
    line-height: 1.25;
}

.home-campaign-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.7;
}

.home-campaign-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 800;
}

/* Services Section (Interactive Dashboard Layout) */
.services-dashboard-wrapper {
    margin-top: 40px;
    width: 100%;
}

/* Top Grid Menu */
.services-tabs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.services-sidebar-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.services-sidebar-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition-fast);
}

.services-sidebar-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.services-sidebar-btn.active {
    background: var(--primary-light);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-md);
}

.services-sidebar-btn.active::before {
    transform: scaleX(1);
}

.sidebar-btn-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.services-sidebar-btn.active .sidebar-btn-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
}

.sidebar-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.sidebar-btn-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.sidebar-btn-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidebar-btn-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Dashboard Console Box */
.services-content-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 40px;
    min-height: 480px;
    width: 100%;
}

.service-content-slide {
    display: none;
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-content-slide.active {
    display: block;
}

.service-slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.service-slide-info {
    text-align: left;
}

.service-slide-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-slide-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Benefits inside dashboard */
.service-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-cta-btn {
    padding: 10px 24px;
}

/* Visual App Panels */
.service-slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-app-container {
    width: 100%;
    max-width: 380px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 16px;
}

.mini-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.mini-app-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-app-action-btn {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(37, 99, 235, 0.1);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mini-app-action-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

/* 1. Theme Simulator App */
.web-mockup-app {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-slow);
}

.web-mockup-app-header {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.web-mockup-app-dots {
    display: flex;
    gap: 4px;
}

.web-mockup-app-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.web-mockup-app-dots span.red { background: #ff5f56; }
.web-mockup-app-dots span.yellow { background: #ffbd2e; }
.web-mockup-app-dots span.green { background: #27c93f; }

.web-mockup-app-addr {
    flex: 1;
    font-size: 0.6rem;
    color: var(--text-muted);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.web-mockup-app-body {
    padding: 16px;
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    transition: var(--transition-slow);
}

.web-mockup-app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-logo {
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--primary);
}

.mock-nav-links {
    display: flex;
    gap: 8px;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.web-mockup-app-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 6px;
}

.mock-hero-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
}

.mock-hero-text {
    font-size: 0.55rem;
    color: var(--text-muted);
    max-width: 160px;
}

.mock-hero-btn {
    font-size: 0.55rem;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Theme dark values */
.web-mockup-app.theme-dark .web-mockup-app-body {
    background: #0b1329;
    color: #ffffff;
}

.web-mockup-app.theme-dark .mock-hero-title {
    color: #ffffff;
}

.web-mockup-app.theme-dark .mock-hero-text {
    color: #94a3b8;
}

.web-mockup-app.theme-dark .web-mockup-app-addr {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
}

/* 2. Sector Swapper App */
.sector-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.sector-tab-btn {
    flex: 1;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sector-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.sector-mockup-app {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.sector-mockup-body {
    padding: 16px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: #ffffff;
    transition: var(--transition-normal);
}

.sector-mockup-body h5 {
    font-size: 0.85rem;
    font-weight: 800;
}

.sector-mockup-body p {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.sector-mock-action {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-top: 4px;
}

/* Sector styles */
.sector-mockup-app.medikal .sector-mock-action { background: #0d9488; }
.sector-mockup-app.medikal h5 { color: #0d9488; }
.sector-mockup-app.emlak .sector-mock-action { background: #ea580c; }
.sector-mockup-app.emlak h5 { color: #ea580c; }
.sector-mockup-app.hukuk .sector-mock-action { background: #854d0e; }
.sector-mockup-app.hukuk h5 { color: #854d0e; }

/* 3. Corporate Card Palette Switcher */
.card-palette-switches {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.palette-switch-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.palette-switch-btn.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--primary);
}

.card-mockup-app {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 24px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.card-mockup-inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-name {
    font-size: 0.8rem;
    font-weight: 800;
}

.card-job {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.card-contact {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Card color schemes */
.card-mockup-app.color-blue { background: #eff6ff; }
.card-mockup-app.color-blue .card-logo { background: #2563eb; }
.card-mockup-app.color-blue .card-name { color: #1e3a8a; }

.card-mockup-app.color-teal { background: #f0f9ff; }
.card-mockup-app.color-teal .card-logo { background: #0ea5e9; }
.card-mockup-app.color-teal .card-name { color: #0369a1; }

.card-mockup-app.color-emerald { background: #ecfdf5; }
.card-mockup-app.color-emerald .card-logo { background: #10b981; }
.card-mockup-app.color-emerald .card-name { color: #065f46; }

/* 4. WordPress Health Optimizer App */
.wp-app-console {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.wp-health-circle {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-progress-ring {
    transform: rotate(-90deg);
}

.wp-progress-ring__circle {
    transition: stroke-dashoffset 0.35s, stroke 0.35s;
    transform-origin: 50% 50%;
}

.wp-health-val {
    position: absolute;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.wp-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    text-align: left;
}

.wp-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
}

.wp-check-input {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* 5. Before / After Speed Comparison Slider */
.speed-slider-app {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.speed-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.speed-layer.blurry {
    filter: blur(1px);
    background: #f8fafc;
    width: 50%;
    z-index: 2;
    border-right: 1px solid transparent;
}

.speed-card {
    border: 1px solid var(--border-color);
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    width: 160px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.score-badge {
    font-size: 0.55rem;
    font-weight: 800;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
}

.score-badge.green { background: #10b981; }
.score-badge.red { background: #ef4444; }

.speed-card h6 { font-size: 0.75rem; font-weight: 800; }
.speed-card .bar { height: 4px; border-radius: 2px; }
.speed-card p { font-size: 0.6rem; color: var(--text-muted); }

.speed-range-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 5;
    cursor: ew-resize;
    margin: 0;
}

.speed-range-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--primary);
    z-index: 4;
    pointer-events: none;
}

.speed-range-line::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* 6. Google SERP Simulator App */
.seo-sim-app {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-sim-search {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.seo-sim-results {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    height: 110px;
    overflow: hidden;
}

.seo-result-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-size: 0.6rem;
    text-align: left;
}

.seo-result-item.rank-target {
    border-color: rgba(37, 99, 235, 0.3);
    background: var(--primary-light);
}

.rank-lbl {
    font-weight: 800;
    color: var(--text-muted);
}

.seo-result-item.rank-target .rank-lbl {
    color: var(--primary);
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-url {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.item-title {
    font-weight: 700;
    color: var(--text-primary);
}

.seo-simulate-btn {
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.seo-simulate-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles for Dashboard */
@media (max-width: 1199px) and (min-width: 992px) {
    .services-tabs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .services-dashboard-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .services-tabs-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
        gap: 10px;
        scrollbar-width: none;
        margin-bottom: 8px;
    }
    
    .services-tabs-grid::-webkit-scrollbar {
        display: none;
    }
    
    .services-tabs-grid .services-sidebar-btn {
        flex-shrink: 0;
        width: auto;
        padding: 10px 16px;
    }
    
    .services-sidebar-btn::before {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3.5px;
        transform: scaleX(0);
        transform-origin: center;
    }
    
    .services-sidebar-btn.active::before {
        transform: scaleX(1);
    }
    
    .services-content-box {
        padding: 24px;
    }
    
    .service-slide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-slide-visual {
        order: -1;
    }
}

/* Showcase Section (3-Column Card Deck) */
.showcase-deck-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.showcase-deck-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
}

.showcase-deck-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: var(--shadow-premium), 0 20px 40px rgba(37, 99, 235, 0.03);
}

/* Card Visual Simulator (Top Half) */
.deck-card-visual {
    height: 180px;
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: background var(--transition-normal);
}

.showcase-deck-card:hover .deck-card-visual,
.showcase-deck-card.sim-active .deck-card-visual {
    background: #ffffff;
}

/* Simulator 1: Mobile Viewport mini */
.viewport-sim-mini {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewport-device-border {
    width: 110px;
    height: 145px;
    border: 3px solid var(--text-primary);
    border-radius: 12px;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: width var(--transition-normal), height var(--transition-normal), border-color var(--transition-normal);
    overflow: hidden;
}

.showcase-deck-card:hover .viewport-device-border,
.showcase-deck-card.sim-active .viewport-device-border {
    width: 100%; /* Resizes horizontally to desktop view! */
    height: 120px;
    border-color: var(--primary);
}

.viewport-screen-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.sim-logo-bar {
    width: 24px;
    height: 6px;
    background: var(--border-color);
    border-radius: 1px;
}

.sim-hero-layout-mini {
    display: flex;
    gap: 6px;
    align-items: center;
}

.sim-hero-layout-mini .sim-hero-media {
    width: 28px;
    height: 20px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.showcase-deck-card:hover .sim-hero-layout-mini .sim-hero-media,
.showcase-deck-card.sim-active .sim-hero-layout-mini .sim-hero-media {
    width: 48px;
    height: 32px;
}

.sim-grid-layout-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 2px;
}

/* Horizontal reflow inside card 1 on hover */
.showcase-deck-card:hover .sim-grid-layout-mini,
.showcase-deck-card.sim-active .sim-grid-layout-mini {
    grid-template-columns: repeat(2, 1fr);
}

.sim-grid-layout-mini .sim-grid-box {
    height: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

/* Simulator 2: SEO Mini Audit */
.seo-sim-mini {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-sim-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seo-sim-lbl {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.seo-sim-lbl strong {
    color: #10b981;
}

.seo-sim-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.seo-sim-bar .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #10b981;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Simulator 3: Speed Dials Mini */
.speed-sim-mini {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    width: 100%;
}

.mini-dial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mini-dial-card span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mini-dial-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-dial-score {
    position: absolute;
    font-size: 0.95rem;
    font-weight: 800;
}

.mini-dial .dial-bg {
    stroke: var(--border-color);
}

.mini-dial .dial-fill {
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.8s ease;
}

/* Bottom Card Text Context */
.deck-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding-top: 10px;
}

.showcase-num-badge {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.05);
    line-height: 1;
    transition: color var(--transition-normal);
}

.showcase-deck-card:hover .showcase-num-badge {
    color: rgba(37, 99, 235, 0.12);
}

.showcase-deck-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.showcase-deck-card:hover .showcase-deck-title {
    color: var(--primary);
}

.showcase-deck-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .showcase-deck-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* Testimonials Split Section */
.testimonials-split-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.testimonials-info-col {
    position: sticky;
    top: 120px;
}

.testimonials-info-col .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: left;
}

.testimonials-info-col .section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    text-align: left;
}

.trust-score-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.trust-stars {
    color: #fbbf24;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.trust-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-meta strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.trust-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-cards-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

.testimonial-card-v2 {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.testimonial-card-v2.featured {
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, var(--primary), #0284c7) border-box;
}

.testimonial-card-v2:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: var(--shadow-premium), 0 20px 40px rgba(37, 99, 235, 0.04);
}

.card-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.quote-bg-icon {
    position: absolute;
    right: 24px;
    top: 12px;
    font-size: 7rem;
    font-family: Georgia, serif;
    font-weight: 900;
    line-height: 1;
    color: rgba(37, 99, 235, 0.04);
    pointer-events: none;
    transition: transform 0.4s ease, color 0.4s ease;
}

.testimonial-card-v2:hover .quote-bg-icon {
    transform: scale(1.1) rotate(-5deg);
    color: rgba(37, 99, 235, 0.08);
}

.testimonial-card-v2 .testimonial-quote {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-card-v2 .testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.grad-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.grad-emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}

.grad-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.testimonial-card-v2 .testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-card-v2 .testimonial-title {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (min-width: 992px) {
    .testimonial-card-v2:nth-child(2) {
        margin-top: 32px;
    }
}

@media (max-width: 991px) {
    .testimonials-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-info-col {
        position: static;
        text-align: center;
    }
    
    .testimonials-info-col .section-title,
    .testimonials-info-col .section-desc {
        text-align: center;
    }
    
    .trust-score-badge {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .testimonials-cards-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 0% 0%, rgba(2, 132, 199, 0.05) 0%, transparent 50%);
}

.cta-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 80px 48px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
/* ===== Footer ===== */
.footer {
    position: relative;
    overflow: hidden;
    padding-top: 88px;
    padding-bottom: 36px;
    background:
        radial-gradient(circle at 85% 0%, rgba(37, 99, 235, 0.06), transparent 42%),
        radial-gradient(circle at 8% 100%, rgba(2, 132, 199, 0.05), transparent 46%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.55), rgba(2, 132, 199, 0.55), transparent);
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.7fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-blue);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.28);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-col h4,
.footer-newsletter h4 {
    position: relative;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.footer-col h4::after,
.footer-newsletter h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient-blue);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 5px 5px 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.newsletter-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 10px 6px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--gradient-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.42);
}

.newsletter-btn svg {
    width: 18px;
    height: 18px;
}

.newsletter-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.newsletter-note svg {
    width: 14px;
    height: 14px;
    color: #10b981;
    flex-shrink: 0;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand, .footer-newsletter {
        grid-column: span 2;
    }

    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .footer {
        padding-top: 64px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand, .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Scroll Animations helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Process Timeline Section ("Süreçten Yayına") --- */
.surec-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.surec-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

/* Left Column: Live Process Monitor */
.surec-monitor-column {
    position: relative;
}

.surec-monitor-wrapper {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-premium), 0 20px 50px rgba(37, 99, 235, 0.04);
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.monitor-header {
    background: var(--bg-tertiary);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--border-color);
}

.monitor-dots {
    display: flex;
    gap: 6px;
}

.monitor-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.monitor-dots .dot.red { background: #ff5f56; }
.monitor-dots .dot.yellow { background: #ffbd2e; }
.monitor-dots .dot.green { background: #27c93f; }

.monitor-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.monitor-screen-container {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.monitor-screen {
    display: none;
    flex-direction: column;
    height: 100%;
}

.monitor-screen.active {
    display: flex;
    animation: screenFadeIn 0.4s ease-out forwards;
}

@keyframes screenFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.screen-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.screen-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    color: #ffffff;
}

.badge-green { background: #10b981; }
.badge-red { background: #ef4444; }
.badge-yellow { background: #f59e0b; }
.badge-orange { background: #f97316; }

.screen-title h5 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

/* Screen 1: Wireframe Simulator */
.wireframe-simulator {
    background: #f8fafc;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.wf-logo {
    width: 24px;
    height: 12px;
    background: var(--border-hover);
    border-radius: 2px;
}

.wf-menu {
    display: flex;
    gap: 8px;
}

.wf-menu span {
    width: 16px;
    height: 6px;
    background: var(--border-color);
    border-radius: 1px;
}

.wf-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
    align-items: center;
}

.wf-hero-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wf-line {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
}

.wf-line.long { width: 90%; }
.wf-line.short { width: 50%; }

.wf-btn {
    width: 40px;
    height: 16px;
    background: var(--primary);
    opacity: 0.15;
    border-radius: 3px;
    margin-top: 4px;
}

.wf-hero-img {
    height: 48px;
    background: var(--border-color);
    border-radius: 6px;
    border: 1px dashed var(--border-hover);
}

.wf-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.wf-feat-box {
    height: 32px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.wf-status-bar {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wf-status-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Screen 2: Radar Simulator */
.radar-simulator {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.radar-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.12);
    position: relative;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    overflow: hidden;
    flex-shrink: 0;
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, rgba(37, 99, 235, 0.15) 0deg, transparent 90deg);
    border-radius: 50%;
    animation: radarSweep 4s linear infinite;
    transform-origin: center;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    font-size: 0.65rem;
}

.radar-dot span {
    position: absolute;
    white-space: nowrap;
    left: 12px;
    top: -4px;
    background: var(--bg-primary);
    padding: 1px 4px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.radar-dot.dot-1 { top: 20%; left: 30%; }
.radar-dot.dot-2 { top: 65%; left: 15%; }
.radar-dot.target-dot {
    top: 45%;
    left: 70%;
    background: #ef4444;
}

.radar-dot.target-dot span {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #ef4444;
    font-weight: 700;
}

.radar-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.r-stat {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    border-left: 3px solid var(--primary);
}

.r-stat span {
    color: var(--text-muted);
}

.r-stat strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Screen 3: Invoice Simulator */
.invoice-simulator {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inv-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.inv-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inv-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.inv-item .chk {
    color: #10b981;
    font-weight: 700;
    margin-right: 8px;
}

.inv-item strong {
    margin-left: auto;
    color: #10b981;
    font-size: 0.75rem;
}

.inv-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
}

.inv-footer span {
    color: var(--text-primary);
}

.inv-footer .price-val {
    color: var(--primary);
}

/* Screen 4: Launch Simulator */
.launch-simulator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
}

.lh-score-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-ring-active {
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.8s ease;
}

.score-number {
    position: absolute;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.launch-badge .l-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 1.2s infinite;
}

.launch-stats-row {
    display: flex;
    gap: 20px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.launch-stats-row .l-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

.launch-stats-row .l-stat span {
    color: var(--text-muted);
}

.launch-stats-row .l-stat strong {
    font-size: 0.95rem;
    margin-top: 2px;
}


/* Right Column: Vertical Timeline Steps */
.surec-steps-column {
    position: relative;
    padding-left: 45px;
}

.steps-progress-track {
    position: absolute;
    left: 15px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: var(--border-color);
    border-radius: var(--radius-full);
}

.steps-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-blue);
    border-radius: var(--radius-full);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow-step-card-v {
    display: flex;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.flow-step-card-v:hover {
    background: var(--bg-primary);
    border-color: var(--border-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.flow-step-card-v.active {
    background: var(--bg-primary);
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateX(8px);
    box-shadow: var(--shadow-premium), 0 10px 30px rgba(37, 99, 235, 0.03);
}

/* Markers on left line */
.step-v-marker {
    position: absolute;
    left: -44px;
    top: 26px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 2;
    transition: all 0.3s ease;
}

.flow-step-card-v.active .step-v-marker {
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.flow-step-card-v.active .step-v-marker.marker-green { background: #10b981; }
.flow-step-card-v.active .step-v-marker.marker-red { background: #ef4444; }
.flow-step-card-v.active .step-v-marker.marker-yellow { background: #f59e0b; }
.flow-step-card-v.active .step-v-marker.marker-orange { background: #f97316; }

.step-v-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-v-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.flow-step-card-v.active .step-v-title {
    color: var(--primary);
}

.step-v-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsiveness media queries */
@media (max-width: 991px) {
    .surec-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .surec-monitor-column {
        order: 2;
    }
    
    .surec-steps-column {
        order: 1;
    }
}

/* Portfolio Sleek Grid & Blog Editorial List Section */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.portfolio-header .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.btn-all-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(2, 132, 199, 0.4);
    background: #ffffff;
    color: #0284c7;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-all-portfolio:hover {
    background: rgba(2, 132, 199, 0.05);
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Portfolio Cinematic Grid */
.ref-cinematic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ref-cinematic-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 20px;
}

.ref-cinematic-img-wrap {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ref-cinematic-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ref-cinematic-card:hover .ref-cinematic-img-wrap {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium), 0 20px 40px rgba(2, 132, 199, 0.06);
}

.ref-cinematic-card:hover .ref-cinematic-img-wrap img {
    transform: scale(1.04);
}

.ref-cinematic-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 4px;
}

.ref-cinematic-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-cinematic-badge {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ref-cinematic-sep {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.ref-cinematic-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.ref-cinematic-card:hover .ref-cinematic-title {
    color: var(--primary);
}

.ref-cinematic-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 4px 0;
}

.ref-cinematic-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    width: fit-content;
}

.ref-cinematic-link .link-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.ref-cinematic-card:hover .ref-cinematic-link .link-arrow {
    transform: translateX(4px);
}

/* Blog Editorial List */
.blog-editorial-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
}

.blog-editorial-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.blog-editorial-row:hover {
    background: rgba(37, 99, 235, 0.015);
    padding-left: 24px;
    padding-right: 24px;
    border-color: rgba(37, 99, 235, 0.15);
}

.blog-row-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 140px;
    flex-shrink: 0;
}

.blog-row-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.blog-row-badge.tag-design {
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.blog-row-badge.tag-seo {
    color: #10b981;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.blog-row-badge.tag-cms {
    color: #0891b2;
    background: #ecfeff;
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.blog-row-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-row-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-row-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.blog-editorial-row:hover .blog-row-title {
    color: var(--primary);
}

.blog-row-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.blog-row-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.btn-circle-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.blog-editorial-row:hover .btn-circle-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* 7. Sosyal Medya Gönderi Önizleme */
.sm-mockup-app {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.sm-mockup-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
    border-bottom: 1px solid var(--bg-tertiary);
}

.sm-profile-pic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-profile-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sm-profile-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sm-profile-loc {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.sm-more-icon {
    font-size: 0.65rem;
    color: var(--text-muted);
    cursor: pointer;
}

.sm-post-image {
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 16px;
    text-align: center;
    transition: var(--transition-slow);
}

.sm-mockup-app.style-gradient-blue .sm-post-image {
    background: linear-gradient(135deg, #2563eb, #0284c7);
}

.sm-mockup-app.style-dark .sm-post-image {
    background: #0f172a;
}

.sm-mockup-app.style-light .sm-post-image {
    background: #f8fafc;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.sm-post-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sm-post-tagline {
    font-size: 0.75rem;
    margin-top: 6px;
    opacity: 0.9;
    font-weight: 500;
}

.sm-post-actions {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 12px;
    border-bottom: 1px solid var(--bg-tertiary);
    font-size: 0.65rem;
    font-weight: 700;
}

.sm-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sm-heart-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sm-action-btn.liked {
    color: #ef4444;
}

.sm-action-btn.liked .sm-heart-icon {
    fill: #ef4444;
    stroke: #ef4444;
    transform: scale(1.2);
}

.sm-share-btn {
    color: var(--text-muted);
}

.sm-post-caption {
    font-size: 0.62rem;
    color: var(--text-secondary);
    padding: 10px 12px;
    line-height: 1.4;
}

/* 8. E-Ticaret ve Reklam Hesaplayıcıları */
.ecom-calculator-app, .ads-calculator-app {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.calc-slider-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.calc-slider-header strong {
    color: var(--primary);
    font-weight: 700;
}

.calc-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    outline: none;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    transition: transform 0.1s ease;
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid var(--bg-tertiary);
    padding-top: 14px;
}

.calc-result-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.result-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* 9. Mobil Uygulama Simülatörü */
.mobile-mockup-app {
    width: 100%;
    max-width: 250px;
    height: 400px;
    background: #0f172a;
    border: 8px solid #334155;
    border-radius: 36px;
    box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(0,0,0,0.25);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.mobile-mockup-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.mobile-mockup-header-bar {
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    background: #f8fafc;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 10;
}

.mobile-mockup-notch {
    width: 80px;
    height: 14px;
    background: #0f172a;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mobile-mockup-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-screen-content {
    display: none;
    flex-direction: column;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.mobile-screen-content.active {
    display: flex;
}

.mobile-screen-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
    margin-bottom: 4px;
    text-align: left;
}

.mobile-screen-header h5 {
    font-size: 0.8rem;
    font-weight: 800;
}

.mobile-product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.mob-card-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--gradient-blue);
    flex-shrink: 0;
}

.mob-card-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.mob-card-details strong {
    font-size: 0.65rem;
    color: var(--text-primary);
}

.mob-card-details span {
    font-size: 0.52rem;
    color: var(--text-muted);
}

.mobile-profile-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    text-align: center;
}

.mob-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 6px;
}

.mobile-profile-wrap h6 {
    font-size: 0.72rem;
    font-weight: 800;
    margin: 0;
}

.mob-sub {
    font-size: 0.52rem;
    color: var(--text-muted);
}

.mob-profile-menu {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mob-menu-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.mobile-cart-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.62rem;
}

.cart-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.mobile-checkout-btn {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition-fast);
}

.mobile-checkout-btn:hover {
    background: var(--primary-hover);
}

.mobile-mockup-nav {
    height: 44px;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 4px;
}

.mobile-nav-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--text-muted);
    font-size: 0.48rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    flex: 1;
}

.mobile-nav-btn.active {
    color: var(--primary);
}

.mob-nav-icon {
    width: 14px;
    height: 14px;
}

@media (max-width: 1199px) {
    .ref-cinematic-grid {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .ref-cinematic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .ref-cinematic-img-wrap {
        height: 240px;
    }
    
    .blog-editorial-row {
        gap: 20px;
        padding: 20px 12px;
    }
    
    .blog-row-meta {
        width: 110px;
    }
}

@media (max-width: 767px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .ref-cinematic-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ref-cinematic-img-wrap {
        height: 200px;
    }
    
    .blog-editorial-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }
    
    .blog-row-meta {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    
    .blog-row-action {
        display: none; /* Hide circular arrow on mobile view for cleaner aesthetic */
    }
}

/* Dynamic Service Showcase Images */
.service-image-container {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}
.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
