/*

TemplateMo 618 The Catalyst

https://templatemo.com/tm-618-the-catalyst

Silver & Acid Light-Mode SaaS Landing Page

*/


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

:root {
    /* Silver & Acid Palette */
    --bg:           #FAFAFA;
    --surface:      #F0F0F0;
    --text:         #111111;
    --text-muted:   #666666;
    --text-dim:     #999999;
    --accent:       #D4FF00;
    --accent-hover: #c2eb00;
    --border:       #E5E5E5;
    --border-light: #EEEEEE;
    --white:        #FFFFFF;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container:   1200px;
    --gap:         24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

/* Mobil hamburger açık: sayfa arkası kaymasın; kaydırma yalnızca .nav-cluster panelinde */
html.nav-drawer-open {
    overflow: hidden;
    height: 100%;
}

html.nav-drawer-open body {
    overflow: hidden !important;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ===== Machined Silver Card System ===== */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 var(--white);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
    transform: translateY(-2px);
}

/* ===== Acid Button System ===== */
.btn-acid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    user-select: none;
}

.btn-acid:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px var(--text);
}

.btn-acid:active {
    transform: translateY(0);
    box-shadow: 1px 1px 0px var(--text);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.2s ease;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px var(--text);
    border-color: var(--text);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg {
    width: 18px;
    height: 18px;
}

/* Masaüstü: logo | [menüler + CTA aynı satır] | hamburger (gizli) */
.nav-cluster {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(20px, 3vw, 36px);
    flex: 1;
    min-width: 0;
}

.nav-cluster > .nav-links {
    margin-right: auto;
    min-width: 0;
}

.nav-util-auth {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-cta-auth-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-register-icon {
    font-size: 0.95em;
    line-height: 1;
    animation: nav-register-icon-pulse 1.75s ease-in-out infinite;
}

@keyframes nav-register-icon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    45% {
        transform: scale(1.14);
        opacity: 0.88;
    }
    70% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.btn-register-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-register-hero .hero-register-arrow {
    flex-shrink: 0;
    animation: hero-register-arrow-nudge 1.4s ease-in-out infinite;
}

@keyframes hero-register-arrow-nudge {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.85;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-register-icon,
    .btn-register-hero .hero-register-arrow {
        animation: none !important;
    }
}

/* Girişli CTA geniş; cluster flex:1 + min-width:0 iken linkler sıfıra sıkışmasın */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-cta-auth-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn-acid {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-cta .btn-ghost {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active span::after  { transform: rotate(-45deg); top: 0; }

/* Girişli: dil + sepet + isim; misafir: dil+sepet + giriş/kayıt üst çubukta; hamburger her zaman en sağda */
.nav-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 1002;
}

/* Misafir: dil + sepet solda; giriş / kayıt aynı satırda sağda (hamburger .nav-end-cap içinde) */
.nav-header-right--guest {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: auto;
}

.nav-header-right--guest .nav-guest-util {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: auto;
}

.nav-header-right--guest .nav-guest-auth--desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta--guest-drawer-only {
    display: none !important;
}

.nav-end-cap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
}

.nav-end-cap .nav-cart-bar {
    position: relative;
    flex-shrink: 0;
}

.nav-util-auth .nav-cart-bar {
    position: relative;
    flex-shrink: 0;
}

.nav-cart-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    color: var(--text);
    font-size: 16px;
    line-height: 1;
}

.nav-cart-trigger .fa-cart-shopping {
    display: block;
    line-height: 1;
}

.nav-cart-badge {
    display: none;
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1;
}

.nav-cart-badge.is-visible {
    display: inline-flex;
}

/* Çekmece içi hesap bloğu (girişli kullanıcı); masaüstünde alt öğeler zaten .nav-mobile-* ile gizli */
.nav-drawer-account {
    display: contents;
}

.nav-mobile-flat,
.nav-mobile-group-label {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== SECTION 1: HERO ===== */
.hero {
    padding-top: 40px;
    padding-bottom: 60px;
    margin-top: 0;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    box-shadow: inset 0 1px 0 var(--white);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 820px;
    margin: 0 auto 24px;
}

.hero h1 .accent-word {
    color: var(--text);
    background: var(--accent);
    padding: 0 10px;
    border-radius: 8px;
    display: inline-block;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 72px;
}

/* Dashboard Mockup */
.hero-dashboard {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}

.hero-dashboard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.dashboard-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
    box-shadow: inset 0 1px 0 var(--white),
                0 0 0 1px rgba(0,0,0,0.02),
                0 20px 60px -10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.dashboard-dots {
    display: flex;
    gap: 7px;
}

.dashboard-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--border);
}

.dashboard-toolbar-tabs {
    display: flex;
    gap: 2px;
}

.dashboard-toolbar-tabs span {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 6px;
    cursor: default;
}

.dashboard-toolbar-tabs span.active {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.dashboard-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.dash-stat-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 1px 0 var(--white);
}

.dash-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.dash-stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.dash-stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #22C55E;
}

.dash-stat-change.down { color: #EF4444; }

/* Data Table inside dashboard */
.dashboard-table-area {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.dash-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.dash-table-header span {
    font-size: 14px;
    font-weight: 600;
}

.dash-table-header .dash-filter {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.dash-table {
    width: 100%;
}

.dash-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 100px;
    padding: 12px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.dash-table-row.head {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0,0,0,0.015);
}

.dash-table-row:last-child {
    border-bottom: none;
}

.dash-cell {
    font-variant-numeric: tabular-nums;
}

.dash-cell-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-cell-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.dash-status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.dash-status.active {
    background: #DCFCE7;
    color: #166534;
}

.dash-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

.dash-status.draft {
    background: var(--surface);
    color: var(--text-muted);
}

/* ===== SECTION 2: SPEED METRICS ===== */
.metrics {
    padding: var(--section-pad) 0;
}

.metrics-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 56px;
}

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

.metric-item {
    text-align: center;
    padding: 48px 24px;
}

.metric-number {
    font-size: clamp(56px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 12px;
}

.metric-number .metric-unit {
    font-size: 0.45em;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.02em;
}

.metric-number .metric-highlight {
    color: var(--text);
    background: var(--accent);
    padding: 0 6px;
    border-radius: 6px;
}

.metric-desc {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 240px;
    margin: 0 auto;
}

.metric-divider {
    width: 1px;
    background: var(--border);
    margin: 24px 0;
    justify-self: center;
}

/* ===== SECTION: HOMEPAGE INTRO ===== */
.homepage-intro {
    padding: clamp(24px, 4vw, 44px) 0 clamp(74px, 10vw, 130px);
}

.homepage-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(22px, 4vw, 44px);
    align-items: center;
}

.homepage-intro-copy h2 {
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
}

.homepage-intro-copy p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.72;
    max-width: 640px;
    margin-bottom: 14px;
}

.homepage-intro-copy p:last-child {
    margin-bottom: 0;
}

.homepage-intro-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.homepage-intro-image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 320px;
    background: var(--surface);
    box-shadow: inset 0 1px 0 var(--white);
}

.homepage-intro-image-card img,
.homepage-intro-image-ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-intro-image-ph {
    background: linear-gradient(135deg, #f2f2f2 0%, #dddddd 100%);
}

/* ===== SECTION: HOMEPAGE INTRO 2 ===== */
.homepage-intro2 {
    padding: clamp(34px, 5vw, 64px) 0 clamp(82px, 11vw, 150px);
}

.homepage-intro2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 46px);
    align-items: center;
}

.homepage-intro2-left h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.homepage-intro2-left p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.homepage-intro2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 17px;
}

.homepage-intro2-cta i {
    font-size: 12px;
}

.homepage-intro2-right {
    display: grid;
    gap: 12px;
}

.homepage-intro2-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 5px solid #2563eb;
    border-radius: 10px;
    padding: 15px 16px;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.03);
}

.homepage-intro2-item small {
    grid-column: 1 / 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.homepage-intro2-item strong {
    grid-column: 1 / 2;
    font-size: 33px;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.homepage-intro2-item span {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    color: inherit;
}

.homepage-intro2-item--blue { border-left-color: #2563eb; color: #2563eb; }
.homepage-intro2-item--purple { border-left-color: #7c3aed; color: #7c3aed; }
.homepage-intro2-item--teal { border-left-color: #0f766e; color: #0f766e; }

/* ===== SECTION: HOMEPAGE PROMO ===== */
.homepage-promo {
    padding: clamp(44px, 6vw, 86px) 0 clamp(62px, 9vw, 108px);
}

.homepage-promo-hero {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(147, 197, 253, 0.35);
    background:
        radial-gradient(ellipse 42% 55% at 18% 22%, rgba(255, 255, 255, 0.42), transparent 60%),
        radial-gradient(ellipse 44% 58% at 82% 18%, rgba(255, 255, 255, 0.35), transparent 62%),
        linear-gradient(180deg, #beddff 0%, #d9ecff 48%, #edf5ff 100%);
    min-height: 360px;
    padding: clamp(38px, 6vw, 58px) 24px 42px;
    display: grid;
    place-items: center;
    text-align: center;
}

.homepage-promo-hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(88%, 900px);
    height: 100%;
    border-left: 2px solid rgba(191, 219, 254, 0.5);
    border-right: 2px solid rgba(191, 219, 254, 0.5);
    pointer-events: none;
}

.homepage-promo-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: min(74%, 760px);
    height: 54px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.2), transparent 72%);
    pointer-events: none;
}

.homepage-promo-hero h2 {
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: #1e3a8a;
    max-width: 980px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.homepage-promo-hero p {
    color: #1e40af;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.5;
    max-width: 920px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.homepage-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    padding: 14px 24px;
    border-radius: 11px;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 12px 24px -16px rgba(29, 78, 216, 0.85);
    position: relative;
    z-index: 1;
}

.homepage-promo-cats {
    margin: -42px auto 0;
    max-width: 1200px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 22px 46px -30px rgba(15, 23, 42, 0.34);
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.homepage-promo-cat {
    display: grid;
    justify-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 12px 6px;
}

.homepage-promo-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    display: grid;
    place-items: center;
    color: #0f172a;
    font-size: 18px;
    background: #fff;
}

.homepage-promo-cat-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}

/* ===== SECTION: HOMEPAGE NEWSLETTER ===== */
.homepage-newsletter {
    position: relative;
    padding: clamp(32px, 5vw, 56px) 0 clamp(12px, 2.5vw, 24px);
    overflow: hidden;
}

.homepage-newsletter::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%);
    width: min(120%, 900px);
    height: min(80%, 420px);
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.14), transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.homepage-newsletter .container {
    position: relative;
    z-index: 1;
}

.homepage-newsletter-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(260px, 380px);
    gap: clamp(18px, 3vw, 32px);
    align-items: stretch;
    padding: clamp(22px, 3.5vw, 36px) clamp(20px, 3vw, 36px);
    border-radius: 22px;
    border: 1px solid rgba(99, 102, 241, 0.22);
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.95), transparent 52%),
        radial-gradient(90% 70% at 100% 20%, rgba(224, 231, 255, 0.55), transparent 50%),
        linear-gradient(145deg, #0f172a 0%, #1e1b4b 38%, #312e81 72%, #1e3a8a 100%);
    box-shadow:
        0 24px 48px -28px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    overflow: hidden;
}

.homepage-newsletter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 88%, rgba(34, 211, 238, 0.12), transparent 42%),
        radial-gradient(circle at 92% 8%, rgba(167, 139, 250, 0.18), transparent 38%);
    pointer-events: none;
}

.homepage-newsletter-card::after {
    content: "";
    position: absolute;
    right: -20%;
    top: -40%;
    width: min(55%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
    filter: blur(2px);
    pointer-events: none;
}

.homepage-newsletter-leading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.homepage-newsletter-icon-ring {
    display: grid;
    place-items: center;
    width: clamp(56px, 8vw, 72px);
    height: clamp(56px, 8vw, 72px);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
    color: #e0e7ff;
    font-size: clamp(22px, 3vw, 28px);
}

.homepage-newsletter-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    align-self: center;
    padding-right: clamp(0px, 2vw, 12px);
}

.homepage-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(224, 231, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage-newsletter-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: linear-gradient(135deg, #34d399, #22d3ee);
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.65);
}

.homepage-newsletter-title {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #fff;
    text-wrap: balance;
}

.homepage-newsletter-desc {
    margin: 0;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.78);
    max-width: 34em;
}

.homepage-newsletter-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(16px, 2.5vw, 22px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 20px 40px -24px rgba(15, 23, 42, 0.35),
        inset 0 1px 0 #fff;
    backdrop-filter: blur(10px);
}

.homepage-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.homepage-newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.homepage-newsletter-field-label {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.02em;
}

.homepage-newsletter-input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #f8fafc;
    color: #0f172a;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.homepage-newsletter-input:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.homepage-newsletter-input:focus {
    outline: none;
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.homepage-newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: pointer;
    color: #0f172a;
    background: linear-gradient(180deg, #c4f542 0%, var(--accent, #bef264) 100%);
    box-shadow: 0 10px 24px -12px rgba(190, 242, 100, 0.55);
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s;
}

.homepage-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(99, 102, 241, 0.35), 4px 4px 0 #0f172a;
}

.homepage-newsletter-btn:active {
    transform: translateY(0);
    box-shadow: 1px 1px 0 #0f172a;
}

.homepage-newsletter-btn i {
    font-size: 13px;
    opacity: 0.9;
}

.homepage-newsletter-trust {
    margin: 12px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.homepage-newsletter-msg {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.homepage-newsletter-msg--ok {
    color: #15803d;
    font-weight: 600;
}

.homepage-newsletter-msg--err {
    color: #b91c1c;
    font-weight: 600;
}

@media (max-width: 960px) {
    .homepage-newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: clamp(28px, 5vw, 36px);
    }

    .homepage-newsletter-leading {
        justify-content: center;
        margin-bottom: 4px;
    }

    .homepage-newsletter-copy {
        padding-right: 0;
    }

    .homepage-newsletter-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .homepage-newsletter-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer: compact bülten strip */
.footer-newsletter {
    margin-top: 28px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(14, 165, 233, 0.04)),
        var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.footer-newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.footer-newsletter-ico {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, #312e81, #1e3a8a);
    color: #e0e7ff;
    box-shadow: 0 8px 18px -10px rgba(30, 58, 138, 0.65);
}

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

.footer-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    flex: 1 1 200px;
    min-width: 0;
}

.footer-newsletter-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-right: 4px;
    flex: 1 1 140px;
    min-width: 0;
}

.footer-newsletter-input {
    flex: 1 1 160px;
    min-width: 140px;
    max-width: 280px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.18);
}

.footer-newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: #0f172a;
    background: linear-gradient(180deg, #c4f542 0%, var(--accent, #bef264) 100%);
    white-space: nowrap;
    box-shadow: 0 6px 14px -8px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -8px rgba(99, 102, 241, 0.35);
}

.footer-newsletter-msg {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.footer-newsletter-msg--ok {
    color: #15803d;
    font-weight: 600;
}

.footer-newsletter-msg--err {
    color: #b91c1c;
    font-weight: 600;
}

/* ===== SECTION: HOMEPAGE ARTICLE (single text) ===== */
.homepage-article {
    padding: clamp(34px, 5vw, 64px) 0 clamp(40px, 6vw, 74px);
}

.homepage-article-body {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 var(--white);
    padding: clamp(20px, 3vw, 34px);
    color: var(--text-muted);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.9;
    letter-spacing: -0.01em;
    max-height: min(48vh, 420px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.homepage-article-body::-webkit-scrollbar {
    width: 8px;
}

.homepage-article-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.homepage-article-body::-webkit-scrollbar-track {
    background: transparent;
}

/* ===== SECTION 3: THE ENGINE — BENTO GRID ===== */
.engine {
    padding: 0 0 clamp(48px, 6vw, 80px);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 600px;
    margin: 0 auto;
}

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

.bento-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.bento-card-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 0 var(--white);
}

.bento-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--text);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

/* Dar ekran / mobil: kartta ikon + başlık yan yana (.bento-grid 1024px altında tek sütun) */
@media (max-width: 1024px) {
    .engine .bento-card {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
        row-gap: 14px;
        align-items: center;
    }

    .engine .bento-card .bento-card-icon {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
    }

    .engine .bento-card > h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        min-width: 0;
    }

    .engine .bento-card > p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .engine .bento-card > .bento-card-visual {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 4px;
    }
}

.bento-card-visual {
    margin-top: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    min-height: 120px;
}

/* Mini chart bars in bento card */
.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.mini-bar {
    flex: 1;
    background: var(--border);
    border-radius: 4px 4px 0 0;
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-bar.highlight { background: var(--accent); }

/* 1. bento: çubuklar alt sabit, yukarı doğru uzayıp kısalır (scaleY, origin bottom) */
.mini-bars.mini-bars--live {
    align-items: flex-end;
}

.mini-bars.mini-bars--live .mini-bar {
    flex: 1;
    transition: none;
    transform-origin: bottom center;
    will-change: transform;
    animation: mini-bar-breathe 2.35s ease-in-out infinite;
}

.mini-bars.mini-bars--live .mini-bar:nth-child(1) { height: 28px; animation-duration: 2.05s; animation-delay: 0s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(2) { height: 44px; animation-duration: 2.45s; animation-delay: 0.12s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(3) { height: 32px; animation-duration: 2.2s; animation-delay: 0.24s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(4) { height: 64px; animation-duration: 2.65s; animation-delay: 0.08s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(5) { height: 48px; animation-duration: 2.15s; animation-delay: 0.32s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(6) { height: 36px; animation-duration: 2.5s; animation-delay: 0.18s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(7) { height: 76px; animation-duration: 2.75s; animation-delay: 0.04s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(8) { height: 56px; animation-duration: 2.3s; animation-delay: 0.28s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(9) { height: 40px; animation-duration: 2.4s; animation-delay: 0.2s; }
.mini-bars.mini-bars--live .mini-bar:nth-child(10) { height: 52px; animation-duration: 2.55s; animation-delay: 0.14s; }

@keyframes mini-bar-breathe {
    0%, 100% {
        transform: scaleY(0.28);
    }

    50% {
        transform: scaleY(1);
    }
}

/* Mini pipeline in bento card */
.mini-pipeline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-pipeline-node {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.mini-pipeline-node:nth-child(1) { background: var(--accent); color: var(--text); }
.mini-pipeline-node:nth-child(2) { background: #e8e8e8; }
.mini-pipeline-node:nth-child(3) { background: #e0e0e0; }

.mini-pipeline-arrow {
    font-size: 12px;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* 3rd bento card — “güvenlik / veri” mini sahne (acid + gümüş, saf CSS) */
.bento-card-visual--shield {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.bento-shield-viz {
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 88px;
    margin: 0 auto;
}

.bento-shield-chassis {
    position: absolute;
    inset: 12px 18px 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 var(--white), 0 8px 24px rgba(17, 17, 17, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px 12px;
}

.bento-shield-led {
    display: block;
    height: 5px;
    border-radius: 3px;
    background: var(--border);
    transform-origin: left center;
    animation: bento-led-shimmer 2.4s ease-in-out infinite;
}

.bento-shield-led--delay {
    animation-delay: 0.2s;
}

.bento-shield-led--delay2 {
    animation-delay: 0.4s;
}

.bento-shield-led:nth-child(1) {
    width: 55%;
}

.bento-shield-led:nth-child(2) {
    width: 78%;
}

.bento-shield-led:nth-child(3) {
    width: 42%;
}

@keyframes bento-led-shimmer {
    0%, 100% {
        opacity: 0.45;
        transform: scaleX(0.96);
        background: var(--border);
    }

    40% {
        opacity: 1;
        transform: scaleX(1);
        background: linear-gradient(90deg, var(--border) 0%, var(--accent) 45%, var(--accent-hover) 100%);
    }

    55% {
        opacity: 1;
        transform: scaleX(1);
        background: var(--accent);
    }
}

.bento-shield-scanline {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 22%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 35%, var(--accent) 65%, transparent);
    box-shadow: 0 0 12px rgba(212, 255, 0, 0.55);
    pointer-events: none;
    opacity: 0.9;
    will-change: transform;
    transform: translateZ(0) translateY(0);
    animation: bento-shield-scan 2.8s ease-in-out infinite;
}

@keyframes bento-shield-scan {
    0%, 8% {
        transform: translateZ(0) translateY(-4px);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    50% {
        transform: translateZ(0) translateY(46px);
    }

    88%, 100% {
        transform: translateZ(0) translateY(-4px);
        opacity: 0;
    }
}

.bento-shield-ring {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50%;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-right-color: rgba(212, 255, 0, 0.35);
    box-sizing: border-box;
    will-change: transform;
    transform: translateZ(0);
    animation: bento-shield-orbit 4.5s linear infinite;
}

@keyframes bento-shield-orbit {
    to {
        transform: translateZ(0) rotate(360deg);
    }
}

/* ===== SECTION 4: PRICING ===== */
.pricing {
    padding: clamp(48px, 6vw, 80px) 0;
}

.toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.toggle-container {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    box-shadow: inset 0 1px 0 var(--white);
}

.toggle-btn {
    padding: 10px 28px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.toggle-btn.active {
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.toggle-save {
    font-size: 12px;
    font-weight: 600;
    color: #16A34A;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.toggle-save.visible {
    opacity: 1;
    transform: translateX(0);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    padding: 32px 28px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pricing-plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-value {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-billed {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 28px;
    transition: all 0.25s ease;
}

.pricing-billed.yearly-active {
    color: var(--text);
    font-weight: 600;
    background: var(--accent);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
}

.pricing-card .btn-acid,
.pricing-card .btn-ghost {
    width: 100%;
    margin-bottom: 28px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #22C55E;
}

/* ===== SECTION 7: FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 2fr) minmax(0, 3.5fr);
    gap: 48px 56px;
    margin-bottom: 64px;
    align-items: start;
}

/* Tüm footer sütun menüleri tek grid hücresinde: 4. ve sonraki satırlar 1. sütunun altına düşer */
.footer-menus-cluster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 40px;
    align-items: start;
    min-width: 0;
}

.footer-brand-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-top: 16px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-link:hover {
    background: #6366F1;
    color: #fff;
    border-color: #6366F1;
}

.footer-social-link i {
    font-size: 14px;
}

.footer-banka-wrap {
    margin-top: 16px;
    max-width: 280px;
    margin-left: -12px;
}

.footer-banka-heading {
    margin: 12px 0 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.35;
}

.footer-banka-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 260px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 10px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-mega-brand {
    margin-top: clamp(56px, 7vw, 88px);
    padding: clamp(20px, 3vw, 36px) 0 clamp(4px, 1vw, 10px);
    text-align: center;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.footer-mega-brand-text {
    display: inline-block;
    font-family: inherit;
    font-weight: 800;
    font-size: clamp(5.25rem, 22vw, 13.5rem);
    letter-spacing: -0.045em;
    line-height: 0.92;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(15, 23, 42, 0.35),
        0 2px 8px rgba(15, 23, 42, 0.18),
        0 0 1px rgba(15, 23, 42, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.65),
        0 0 28px rgba(255, 255, 255, 0.7),
        0 0 48px rgba(248, 250, 252, 0.45);
}

/* FaturaTurk mega yazı: yalnızca mobilde taşmayı kes, masaüstü clamp’e dokunma */
@media (max-width: 768px) {
    .footer-mega-brand {
        margin-top: clamp(20px, 5vw, 40px);
        padding: 12px 0 6px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .footer-mega-brand-text {
        font-size: clamp(2.5rem, 17vw, 4.5rem);
        letter-spacing: -0.04em;
        line-height: 0.93;
        max-width: 100%;
        padding-inline: max(4px, env(safe-area-inset-left, 0));
        box-sizing: border-box;
    }
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-copy a {
    color: var(--text-muted);
}

.footer-copy a:hover {
    color: var(--text);
}

/* Footer menü: native <details> akordeon; mobilde JS ile kapalı, masaüstünde açık */
.footer-menu-accordion {
    min-width: 0;
}

.footer-menu-accordion .footer-accordion-summary {
    list-style: none;
}

.footer-menu-accordion .footer-accordion-summary::-webkit-details-marker {
    display: none;
}

.footer-menu-accordion .footer-links {
    margin-top: 0;
}

@media (min-width: 769px) {
    .footer-menu-accordion .footer-accordion-summary {
        cursor: default;
        pointer-events: none;
    }

    .footer-menu-accordion .footer-accordion-summary::after {
        display: none;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--text);
}

/* ===== SECTION 5: FAQ ===== */
.faq {
    padding: var(--section-pad) 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-controls {
    max-width: 720px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.faq-ctrl-btn {
    padding: 7px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 var(--white);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-ctrl-btn:hover {
    color: var(--text);
    border-color: #CCC;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 var(--white);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.open {
    border-color: #CCCCCC;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--text);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    border-color: var(--accent);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SECTION 6: CTA BANNER ===== */
.cta-banner {
    padding: var(--section-pad) 0;
}

.cta-banner-inner {
    background: #2A2A2A;
    border-radius: 24px;
    padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 72px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(80px);
    pointer-events: none;
}

.cta-banner-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(60px);
    pointer-events: none;
}

.cta-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-banner-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
}

.cta-banner h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--white);
    max-width: 580px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-acid {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-dark-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.2s ease,
                border-color 0.2s ease;
}

.btn-dark-ghost:hover {
    transform: translateY(-2px);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Grafik / güvenlik kartları: iç animasyonlar .reveal opacity:0 iken tarayıcıda donmasın */
.engine .bento-card--live-viz.reveal,
.engine .bento-card--live-viz.reveal.visible,
.engine .bento-card--live-bars.reveal,
.engine .bento-card--live-bars.reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .homepage-intro-grid {
        grid-template-columns: 1fr;
    }

    .homepage-intro-copy p {
        max-width: none;
    }

    .homepage-intro2-grid {
        grid-template-columns: 1fr;
    }

    .homepage-promo-cats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: -24px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

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

    .footer-menus-cluster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    /* Tanıtım bloğu: iki görsel yan yana kalsın (tek sütun kaldırıldı) */
    .homepage-intro-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .homepage-intro-image-card {
        min-height: clamp(140px, 42vw, 220px);
    }

    .homepage-intro2-item strong {
        font-size: clamp(24px, 7vw, 31px);
    }

    .homepage-promo-hero p {
        font-size: 16px;
    }

    .homepage-promo-cats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -16px;
    }

    /* Üst bar: sağ blok (dil/sepet/kullanıcı) taşırken hamburger kesilmesin */
    .nav-inner {
        min-width: 0;
        gap: 8px;
    }

    .nav-end-cap {
        flex: 0 0 auto;
        flex-shrink: 0;
        z-index: 1003;
    }

    /* Hamburger: tüm menü + CTA tek tam ekran panelde; kaydırma yalnızca bu panelde */
    .nav-cluster {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100dvh - 64px);
        max-height: calc(100dvh - 64px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        flex: none;
        background: var(--bg);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        border-top: 1px solid var(--border);
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
        box-sizing: border-box;
    }

    .nav-cluster.open {
        display: flex;
    }

    .nav-cluster.open .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 16px 20px 28px;
        flex: none;
    }

    .nav-cluster.open .nav-links > li {
        width: 100%;
    }

    .nav-cluster.open .nav-links a {
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
        padding: 12px 4px;
    }

    .nav-cluster.open .nav-cta {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        background: var(--surface);
        flex-shrink: 0;
        order: -1;
    }

    /* Girişli çekmece: cüzdan üstte; kullanıcı = düz liste (isim + linkler), dropdown tetikleyici mobilde kapalı */
    .nav-cluster.open .nav-cta-auth-controls {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
    }

    .nav-cluster.open .nav-cta-auth-controls .has-user-menu {
        width: 100%;
        min-width: 0;
    }

    .nav-cluster #user-menu-toggle,
    .nav-cluster #user-menu-dropdown {
        display: none !important;
    }

    /* Mobil: kullanıcı adı + hesap linkleri yalnızca hamburgerde; üst bardaki açılır menü */
    .nav-header-right #user-menu-toggle,
    .nav-header-right #user-menu-dropdown {
        display: none !important;
    }

    .nav-header-right .nav-cta-auth-controls {
        display: none !important;
    }

    /* Hesap linkleri artık #navCluster içinde; üst çubukta gizleme kuralı kaldırıldı */

    /* Girişli: hesap bloğu çekmece üstünde (site menüsünden önce) */
    .nav-cluster.open .nav-drawer-account {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0;
        padding: 16px 20px 14px;
        border-top: none;
        border-bottom: 1px solid var(--border);
        box-sizing: border-box;
    }

    .nav-cluster.open .nav-cta-auth-row {
        order: -1;
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }

    .nav-cluster.open .nav-cta-auth-btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .nav-header-right--guest .nav-guest-auth--desktop {
        display: none !important;
    }

    .nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    /* Misafir: hamburger içinde açılır mega yok, alt menüler alt alta */
    .nav.nav--guest-flat-menus .nav-mobile-group-label {
        display: block;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
        padding: 14px 4px 6px;
        margin-top: 4px;
    }

    .nav.nav--guest-flat-menus .nav-mobile-flat {
        display: flex !important;
        flex-direction: column;
        gap: 2px;
        padding: 0 0 8px 2px;
        margin: 0 0 8px 0;
        border-left: 2px solid var(--border);
    }

    .nav.nav--guest-flat-menus .nav-mobile-flat a {
        display: block;
        padding: 10px 12px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        border-radius: 10px;
    }

    .nav.nav--guest-flat-menus .nav-mobile-flat a:hover {
        background: var(--surface);
    }

    .nav.nav--guest-flat-menus .nav-mobile-group-label.nav-mobile-user-group-label {
        text-transform: none;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--text);
    }

    .nav.nav--guest-flat-menus .nav-mobile-user-flat .nav-mobile-logout-form {
        margin: 0;
    }

    .nav.nav--guest-flat-menus .nav-mobile-user-flat .nav-mobile-logout-btn {
        display: block;
        width: 100%;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        color: var(--text);
        text-align: left;
        padding: 10px 12px;
        border-radius: 10px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav.nav--guest-flat-menus .nav-mobile-user-flat .nav-mobile-logout-btn:hover {
        background: var(--surface);
    }

    .nav.nav--guest-flat-menus .has-dropdown .nav-mega-trigger,
    .nav.nav--guest-flat-menus .has-dropdown .nav-dropdown.mega-menu {
        display: none !important;
    }

    .nav.nav--guest-flat-menus .nav-cluster.open .nav-links > li.has-dropdown {
        border-bottom: 1px solid var(--border);
        padding-bottom: 4px;
        margin-bottom: 4px;
    }

    .nav.nav--guest-flat-menus .nav-cluster.open .nav-links > li.has-dropdown:last-child {
        border-bottom: none;
    }

    /* Dil + sepet (+ girişli isim) + hamburger: tek satır; sağ grup sıkışabilsin (önceden flex-shrink:0 ile hamburger görünmezdi) */
    .nav-header-right {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex: 1 1 0%;
        min-width: 0;
        max-width: 100%;
    }

    .nav-header-right .nav-locale {
        flex-shrink: 0;
    }

    .nav-header-right .nav-cart-bar {
        position: relative;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
    }

    .nav-header-right .nav-toggle {
        display: inline-flex !important;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .nav-cart-trigger {
        width: 40px;
        height: 40px;
    }

    /* Açılır sepet: mobilde ekranda ortala (tetikleyici 40px; right:0 paneli sağa iter) */
    .nav-cart-bar #cart-dropdown {
        position: fixed !important;
        left: 50% !important;
        right: auto !important;
        top: calc(64px + 10px) !important;
        width: min(340px, calc(100vw - 24px)) !important;
        max-width: calc(100vw - 24px) !important;
        transform: translateX(-50%) !important;
        box-sizing: border-box;
    }

    .hero {
        padding-top: 120px;
    }

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

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .metric-item {
        padding: 32px 24px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dash-table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .dash-table-row .dash-cell:nth-child(4),
    .dash-table-row .dash-cell:nth-child(5) {
        display: none;
    }

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

    .footer-menus-cluster {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-menus-cluster > * {
        border-bottom: 1px solid var(--border-light);
    }

    .footer-menus-cluster > *:last-child {
        border-bottom: none;
    }

    .footer-menu-accordion .footer-accordion-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 0;
        padding: 14px 0;
        cursor: pointer;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }

    .footer-menu-accordion .footer-accordion-summary::after {
        content: '';
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        margin-left: auto;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        opacity: 0.45;
        transition: transform 0.2s ease;
    }

    .footer-menu-accordion[open] .footer-accordion-summary::after {
        transform: rotate(225deg);
        margin-top: 4px;
    }

    .footer-menu-accordion .footer-links {
        padding: 0 0 16px 4px;
        gap: 10px;
    }

    .footer-menu-no-links {
        padding: 14px 0;
    }

    .footer-menu-no-links .footer-col-title {
        margin-bottom: 0;
    }

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

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

    .cta-banner .btn-acid,
    .btn-dark-ghost {
        width: 100%;
        max-width: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* Dekoratif mini sahneler + SEO landing blok grafikleri hariç — geri kalan sayfa yine sade */
    /* Ödeme başarı konfeti (.confetti): tek kareye sıkışmasın; dökülme animasyonu görünsün */
    /* .loader (Stüdyo/Konsept/Editorial/Arka Plan Kaldırma "üretiliyor" animasyonu) da hariç —
       0.01ms'e sıkışınca infinite animasyon saniyede binlerce kez döner, "bozulmuş" gibi titrer */
    *:not(.bento-card-visual--shield, .bento-card-visual--shield *, .mini-bars--live, .mini-bars--live *, .seo-lp, .seo-lp *, .confetti, .loader, .loader *),
    *:not(.bento-card-visual--shield, .bento-card-visual--shield *, .mini-bars--live, .mini-bars--live *, .seo-lp, .seo-lp *, .confetti, .loader, .loader *)::before,
    *:not(.bento-card-visual--shield, .bento-card-visual--shield *, .mini-bars--live, .mini-bars--live *, .seo-lp, .seo-lp *, .confetti, .loader, .loader *)::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ===== RESPONSIVE TABLE WRAPPER (dashboard/admin tables) ===== */
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 768px) {
    .table-responsive table { min-width: 640px; }
}
