/* ==========================================================================
   EticMax — Premium Kurumsal Tasarım Sistemi
   Saf PHP + Vanilla CSS | Sora + Inter
   ========================================================================== */

:root {
    --ink:      #0A1C2E;
    --ink-2:    #1C3247;
    --ink-3:    #33475E;
    --muted:    #5B7086;
    --bg:       #F6F9FC;
    --bg-soft:  #EDF4F9;
    --white:    #FFFFFF;
    --line:     #E3EBF3;
    --teal:     #00C2A8;
    --teal-d:   #009B87;
    --blue:     #2563EB;
    --blue-d:   #1D4FD7;
    --orange:   #FF6B2C;
    --orange-d: #F0551A;
    --grad:     linear-gradient(135deg, #00C2A8 0%, #2563EB 100%);
    --grad-soft:linear-gradient(135deg, rgba(0,194,168,.12), rgba(37,99,235,.12));
    --shadow-sm: 0 1px 2px rgba(10,28,46,.06);
    --shadow:    0 10px 30px -12px rgba(10,28,46,.18);
    --shadow-lg: 0 30px 60px -20px rgba(10,28,46,.28);
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 24px;
    --font-head: 'Sora', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
main { display: block; }

.ic { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.2em; }

::selection { background: rgba(0,194,168,.25); }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 26px; border-radius: 14px;
    font-weight: 600; font-size: .98rem; line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
    white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: .9rem; border-radius: 11px; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; border-radius: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 24px -10px rgba(0,168,150,.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -10px rgba(0,168,150,.6); }

.btn--orange { background: linear-gradient(135deg, var(--orange), var(--orange-d)); color: #fff; box-shadow: 0 12px 26px -10px rgba(255,107,44,.55); }
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(255,107,44,.6); }

.btn--ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-d); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-2px); }

/* ---------- Eyebrow & Bölüm Başlıkları ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 15px; border-radius: 999px;
    background: var(--grad-soft);
    color: var(--teal-d);
    font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow .ic { color: var(--orange); }
.eyebrow--light { background: rgba(255,255,255,.14); color: #fff; }

.section { padding: 92px 0; }
.section--soft { background: var(--white); }
.section--tight { padding: 64px 0; }

.section-head { max-width: 720px; margin: 0 auto 54px; }
.section-head--center { text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { margin: 18px 0 14px; }
.section-head h2 strong, .section-head h2 em { font-style: normal; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #fff; font-size: .86rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.topbar p { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.topbar p .ic { color: var(--orange); }
.topbar p strong { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__right a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-weight: 600; }
.topbar__right a:hover { color: #fff; }
.topbar__cta { color: var(--teal) !important; }
.topbar__cta .ic { transition: transform .25s; }
.topbar__cta:hover .ic { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 90;
    background: rgba(246,249,252,.82);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.is-scrolled { background: rgba(255,255,255,.9); border-color: var(--line); box-shadow: 0 8px 30px -14px rgba(10,28,46,.18); }
.header__in { display: flex; align-items: center; gap: 26px; height: 74px; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
    padding: 9px 13px; border-radius: 10px;
    font-size: .93rem; font-weight: 600; color: var(--ink-3);
    transition: color .2s, background .2s;
}
.nav a:hover { color: var(--teal-d); background: rgba(0,194,168,.08); }
.nav a.is-active { color: var(--teal-d); background: rgba(0,194,168,.1); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; border: 1.5px solid var(--line); background: #fff; }
.nav-toggle .ic { width: 22px; height: 22px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { width: 38px; height: 38px; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.logo__text em { font-style: normal; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.logo--light .logo__text { color: #fff; }

/* ---------- Mobil Menü ---------- */
.mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 120;
    background: #fff; box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .35s cubic-bezier(.32,.72,0,1);
    display: flex; flex-direction: column; padding: 20px 22px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu__nav { flex: 1; overflow-y: auto; padding: 14px 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__nav a { display: flex; align-items: center; gap: 12px; padding: 12px 12px; border-radius: 12px; font-weight: 600; color: var(--ink-2); }
.mobile-menu__nav a .ic { color: var(--teal-d); width: 20px; height: 20px; }
.mobile-menu__nav a:hover { background: var(--bg); color: var(--teal-d); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.mobile-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(10,28,46,.5); opacity: 0; visibility: hidden; transition: .3s; }
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 100px; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(600px 400px at 85% 10%, rgba(37,99,235,.10), transparent 60%),
        radial-gradient(700px 500px at 5% 90%, rgba(0,194,168,.12), transparent 60%),
        radial-gradient(400px 300px at 70% 95%, rgba(255,107,44,.08), transparent 60%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__content h1 { margin: 20px 0 18px; }
.hero__content h1 strong { font-weight: 800; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.hero__content .lead { font-size: 1.13rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__proof { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__proof .proof { display: flex; flex-direction: column; }
.hero__proof .proof b { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.hero__proof .proof b span { color: var(--teal-d); }
.hero__proof .proof small { color: var(--muted); font-size: .85rem; }

/* Hero görsel — CSS dashboard mock */
.hero__visual { position: relative; }
.dash {
    position: relative; z-index: 2;
    background: #fff; border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--line);
    overflow: hidden;
}
.dash__bar { display: flex; align-items: center; gap: 6px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: #FBFDFE; }
.dash__bar i { width: 10px; height: 10px; border-radius: 50%; }
.dash__bar i:nth-child(1) { background: #FF5F57; } .dash__bar i:nth-child(2) { background: #FEBC2E; } .dash__bar i:nth-child(3) { background: #28C840; }
.dash__bar span { margin-left: 10px; font-size: .75rem; color: var(--muted); font-weight: 600; }
.dash__body { display: grid; grid-template-columns: 64px 1fr; min-height: 340px; }
.dash__side { background: var(--ink); display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 18px 0; }
.dash__side i { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.08); }
.dash__side i:first-child { background: var(--grad); }
.dash__main { padding: 20px; }
.dash__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.dash__stat { border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.dash__stat small { color: var(--muted); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.dash__stat b { display: block; font-family: var(--font-head); font-size: 1.15rem; margin-top: 3px; }
.dash__stat b em { font-style: normal; font-size: .7rem; color: var(--teal-d); }
.dash__chart { border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.dash__chart small { color: var(--muted); font-size: .72rem; font-weight: 600; }
.dash__bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; margin-top: 12px; }
.dash__bars i { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--teal), var(--blue)); opacity: .85; animation: growBar 1.1s cubic-bezier(.32,.72,0,1) backwards; }
.dash__bars i:nth-child(2n) { background: linear-gradient(180deg, #7DD8CC, #6D9BFF); }
@keyframes growBar { from { height: 4% !important; } }
.dash__bars i:nth-child(1) { height: 42%; animation-delay: .1s } .dash__bars i:nth-child(2) { height: 58%; animation-delay: .16s }
.dash__bars i:nth-child(3) { height: 48%; animation-delay: .22s } .dash__bars i:nth-child(4) { height: 72%; animation-delay: .28s }
.dash__bars i:nth-child(5) { height: 64%; animation-delay: .34s } .dash__bars i:nth-child(6) { height: 88%; animation-delay: .4s }
.dash__bars i:nth-child(7) { height: 100%; animation-delay: .46s }

.hero__chip {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 11px;
    background: #fff; border-radius: 14px; padding: 12px 16px;
    box-shadow: var(--shadow); border: 1px solid var(--line);
    animation: floatY 5s ease-in-out infinite;
}
.hero__chip .chip-ic { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; }
.hero__chip .chip-ic .ic { width: 19px; height: 19px; }
.hero__chip b { font-size: .86rem; display: block; font-family: var(--font-head); }
.hero__chip small { font-size: .73rem; color: var(--muted); }
.hero__chip--order { top: 34px; right: -26px; animation-delay: .6s; }
.hero__chip--order .chip-ic { background: var(--grad); }
.hero__chip--rev { bottom: 46px; left: -34px; animation-delay: 1.4s; }
.hero__chip--rev .chip-ic { background: linear-gradient(135deg, var(--orange), var(--orange-d)); }
.hero__chip--ai { top: -22px; left: 38px; animation-delay: 2.1s; }
.hero__chip--ai .chip-ic { background: linear-gradient(135deg, #7B2FBE, #B04FE0); }
@keyframes floatY { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }

/* ---------- Marka Şeridi (marquee) ---------- */
.brands { padding: 34px 0; border-block: 1px solid var(--line); background: #fff; overflow: hidden; }
.brands p { text-align: center; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.marquee { display: flex; gap: 14px; width: max-content; animation: marquee 30s linear infinite; }
.brands:hover .marquee { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-badge {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 999px;
    border: 1.5px solid var(--line); background: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink-2);
    white-space: nowrap;
}
.brand-badge i { width: 10px; height: 10px; border-radius: 50%; flex: none; }

/* ---------- Özellik Kartları ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card {
    position: relative; background: #fff; border: 1px solid var(--line);
    border-radius: var(--r); padding: 26px 24px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    overflow: hidden;
}
.feat-card::after {
    content: ''; position: absolute; inset: auto 0 0 0; height: 3px;
    background: var(--grad); transform: scaleX(0); transform-origin: left;
    transition: transform .35s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-card:hover::after { transform: scaleX(1); }
.feat-card__ic {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--grad-soft); color: var(--teal-d); margin-bottom: 18px;
}
.feat-card__ic .ic { width: 24px; height: 24px; }
.feat-card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.feat-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ---------- Neden EticMax (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__content .eyebrow { margin-bottom: 16px; }
.split__content h2 { margin-bottom: 16px; }
.split__content > p { color: var(--muted); margin-bottom: 26px; font-size: 1.05rem; }
.check-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 32px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .tick {
    width: 26px; height: 26px; flex: none; border-radius: 8px;
    background: rgba(0,194,168,.13); color: var(--teal-d);
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-list .tick .ic { width: 14px; height: 14px; stroke-width: 2.4; }
.check-list b { display: block; font-family: var(--font-head); font-size: .99rem; }
.check-list small { color: var(--muted); font-size: .88rem; }

.split__visual { position: relative; }
.split__panel {
    border-radius: var(--r-lg); padding: 34px;
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff; box-shadow: var(--shadow-lg);
}
.split__panel h3 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.metric-row { display: flex; flex-direction: column; gap: 18px; }
.metric-row .metric small { display: flex; justify-content: space-between; color: rgba(255,255,255,.7); font-size: .82rem; margin-bottom: 8px; }
.metric-row .metric small b { color: #fff; }
.metric-bar { height: 9px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.metric-bar i { display: block; height: 100%; border-radius: 99px; background: var(--grad); width: 0; transition: width 1.3s cubic-bezier(.32,.72,0,1); }
.split__float {
    position: absolute; right: -18px; bottom: -24px;
    background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg);
    padding: 18px 22px; display: flex; align-items: center; gap: 14px;
    border: 1px solid var(--line);
}
.split__float .big { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--teal-d); }
.split__float small { color: var(--muted); font-size: .8rem; line-height: 1.35; }

/* ---------- AI Bölümü ---------- */
.ai-band { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); color: #fff; padding: 60px 56px; }
.ai-band::before { content: ''; position: absolute; inset: 0; background:
    radial-gradient(500px 300px at 90% 0%, rgba(123,47,190,.35), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(0,194,168,.25), transparent 60%); }
.ai-band__in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.ai-band h2 { color: #fff; margin: 16px 0 14px; }
.ai-band h2 strong { color: transparent; background: linear-gradient(90deg, #2CE5C8, #6D9BFF); -webkit-background-clip: text; background-clip: text; }
.ai-band p { color: rgba(255,255,255,.75); margin-bottom: 26px; }
.ai-list { display: flex; flex-direction: column; gap: 14px; }
.ai-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .95rem; }
.ai-list .tick { width: 24px; height: 24px; flex: none; border-radius: 7px; background: rgba(44,229,200,.18); color: #2CE5C8; display: flex; align-items: center; justify-content: center; }
.ai-list .tick .ic { width: 13px; height: 13px; stroke-width: 2.4; }
.ai-demo { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 22px; backdrop-filter: blur(6px); }
.ai-demo__msg { background: rgba(255,255,255,.09); border-radius: 12px; padding: 13px 16px; font-size: .88rem; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.ai-demo__msg small { display: block; color: #2CE5C8; font-weight: 700; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.ai-demo__msg--ai { background: rgba(44,229,200,.1); border: 1px solid rgba(44,229,200,.22); }
.typing-dots { display: inline-flex; gap: 5px; }
.typing-dots i { width: 7px; height: 7px; border-radius: 50%; background: #2CE5C8; animation: blink 1.2s infinite; }
.typing-dots i:nth-child(2) { animation-delay: .2s } .typing-dots i:nth-child(3) { animation-delay: .4s }
@keyframes blink { 0%,100% { opacity: .25 } 50% { opacity: 1 } }

/* ---------- Sayaçlar ---------- */
.stats-band { background: var(--grad); border-radius: var(--r-lg); padding: 46px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; color: #fff; box-shadow: var(--shadow-lg); }
.stats-band .stat { text-align: center; }
.stats-band .stat b { display: block; font-family: var(--font-head); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; }
.stats-band .stat span { color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500; }

/* ---------- Paket Kartları ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.price-card {
    position: relative; display: flex; flex-direction: column;
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
    padding: 30px 26px; transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--pop { border-color: var(--teal); box-shadow: 0 24px 50px -18px rgba(0,194,168,.4); }
.price-card__badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--grad); color: #fff; font-size: .74rem; font-weight: 700;
    padding: 7px 16px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 8px 18px -6px rgba(0,194,168,.6);
}
.price-card__off { position: absolute; top: 16px; right: 16px; background: rgba(255,107,44,.12); color: var(--orange-d); font-size: .74rem; font-weight: 800; padding: 5px 10px; border-radius: 8px; }
.price-card h3 { font-size: 1.3rem; letter-spacing: .02em; }
.price-card__desc { color: var(--muted); font-size: .88rem; margin: 6px 0 20px; min-height: 40px; }
.price-card__target { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600; color: var(--blue); background: rgba(37,99,235,.08); padding: 6px 12px; border-radius: 8px; margin-bottom: 18px; width: fit-content; }
.price-card__price { margin-bottom: 4px; }
.price-card__price del { color: var(--muted); font-size: .95rem; margin-right: 8px; }
.price-card__price b { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; }
.price-card__per { color: var(--muted); font-size: .84rem; margin-bottom: 22px; }
.price-card__per b { color: var(--teal-d); }
.price-card ul { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .89rem; color: var(--ink-3); }
.price-card ul li .ic { color: var(--teal-d); margin-top: 3px; width: 15px; height: 15px; stroke-width: 2.4; }
.price-card ul li.is-head { color: var(--muted); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Karşılaştırma Tablosu ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 820px; }
.cmp-table th, .cmp-table td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; position: sticky; left: 0; background: inherit; z-index: 2; min-width: 240px; }
.cmp-table thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-size: 1rem; padding: 20px 18px; }
.cmp-table thead th:first-child { background: var(--ink); border-radius: 0; }
.cmp-table thead th small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .76rem; color: rgba(255,255,255,.65); margin-top: 4px; }
.cmp-table thead th.is-pop { background: linear-gradient(135deg, var(--teal-d), var(--blue)); position: relative; }
.cmp-table .cmp-cat td {
    background: var(--bg-soft); font-family: var(--font-head); font-weight: 700;
    font-size: .92rem; color: var(--ink); text-align: left; padding: 13px 18px;
}
.cmp-table tbody tr:hover td { background: #FBFDFF; }
.cmp-table tbody tr:hover td:first-child { background: #FBFDFF; }
.cmp-yes .ic { color: var(--teal-d); stroke-width: 2.6; width: 19px; height: 19px; }
.cmp-no .ic { color: #C4D2DF; width: 17px; height: 17px; }
.cmp-text { font-size: .84rem; font-weight: 600; color: var(--ink-2); background: var(--bg-soft); padding: 4px 11px; border-radius: 8px; white-space: nowrap; }
.cmp-table td { background: #fff; }
.cmp-table td.is-pop { background: rgba(0,194,168,.05); }
.cmp-cta-row td { padding: 18px; }

/* ---------- Entegrasyonlar ---------- */
.intg-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.intg-tab { padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: .9rem; color: var(--ink-3); transition: .25s; display: inline-flex; gap: 8px; align-items: center; }
.intg-tab .ic { width: 16px; height: 16px; }
.intg-tab:hover { border-color: var(--teal); color: var(--teal-d); }
.intg-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.intg-panel { display: none; }
.intg-panel.is-active { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px) } }
.intg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.intg-card {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 18px; transition: transform .25s, box-shadow .25s;
}
.intg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.intg-card__logo {
    width: 48px; height: 48px; flex: none; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .95rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.intg-card__logo.is-dark { color: var(--ink); text-shadow: none; }
.intg-card b { font-size: .95rem; display: block; }
.intg-card small { color: var(--muted); font-size: .78rem; }

/* ---------- Referanslar / Yorumlar ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 18px; transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card .quote-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); color: var(--teal-d); display: flex; align-items: center; justify-content: center; }
.testi-card .quote-ic .ic { width: 20px; height: 20px; }
.testi-card p { color: var(--ink-3); font-size: .97rem; flex: 1; }
.testi-card__who { display: flex; align-items: center; gap: 13px; }
.testi-card__who .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }
.testi-card__who b { display: block; font-size: .94rem; }
.testi-card__who small { color: var(--muted); font-size: .8rem; }
.stars { display: flex; gap: 3px; color: #FFB020; }
.stars .ic { width: 16px; height: 16px; fill: currentColor; stroke: none; }

/* ---------- Başarı Hikayeleri ---------- */
.story-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; margin-bottom: 26px; box-shadow: var(--shadow); }
.story-card h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 12px; }
.story-card h3 i { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.story-card .sector { color: var(--muted); font-size: .85rem; font-weight: 600; margin: 6px 0 18px; text-transform: uppercase; letter-spacing: .05em; }
.story-card blockquote { color: var(--ink-3); font-size: 1.06rem; line-height: 1.7; border-left: 3px solid var(--teal); padding-left: 18px; margin-bottom: 16px; }
.story-card .person { font-weight: 600; font-size: .9rem; color: var(--ink-2); }
.story-metrics { display: grid; grid-template-columns: 1fr; gap: 14px; }
.story-metrics .m { background: var(--bg); border-radius: var(--r); padding: 20px 24px; display: flex; align-items: baseline; gap: 14px; }
.story-metrics .m b { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.story-metrics .m span { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* ---------- SSS Akordiyon ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 13px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.is-open { border-color: var(--teal); box-shadow: var(--shadow); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); }
.faq-item__q .chev { width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s; }
.faq-item__q .chev .ic { width: 15px; height: 15px; }
.faq-item.is-open .chev { transform: rotate(180deg); background: var(--grad); color: #fff; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item__a p { padding: 0 24px 22px; color: var(--muted); font-size: .95rem; }

/* ---------- Blog Kartları ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__cover { height: 168px; position: relative; display: flex; align-items: flex-end; padding: 16px; }
.blog-card__cover .cat { background: rgba(255,255,255,.92); color: var(--ink); font-size: .72rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.blog-card__cover::after { content: ''; position: absolute; inset: 0; background: radial-gradient(300px 150px at 80% 20%, rgba(255,255,255,.25), transparent 60%); }
.cover-g1 { background: linear-gradient(135deg, #00C2A8, #2563EB); }
.cover-g2 { background: linear-gradient(135deg, #FF6B2C, #F7B733); }
.cover-g3 { background: linear-gradient(135deg, #7B2FBE, #B04FE0); }
.cover-g4 { background: linear-gradient(135deg, #0A1C2E, #2563EB); }
.cover-g5 { background: linear-gradient(135deg, #00A892, #7DD8CC); }
.cover-g6 { background: linear-gradient(135deg, #E4007C, #FF6B2C); }
.blog-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card__meta { display: flex; gap: 16px; color: var(--muted); font-size: .78rem; font-weight: 600; }
.blog-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-card__meta .ic { width: 13px; height: 13px; }
.blog-card h3 { font-size: 1.08rem; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--teal-d); }
.blog-card p { color: var(--muted); font-size: .89rem; flex: 1; }
.blog-card__more { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-d); font-weight: 700; font-size: .88rem; }
.blog-card__more .ic { transition: transform .25s; }
.blog-card:hover .blog-card__more .ic { transform: translateX(4px); }

/* Blog detay */
.post-hero { padding: 60px 0 40px; }
.post-hero .cat { display: inline-block; background: var(--grad-soft); color: var(--teal-d); font-size: .76rem; font-weight: 700; padding: 7px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; }
.post-hero h1 { max-width: 820px; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.post-hero .meta { display: flex; gap: 20px; color: var(--muted); font-size: .87rem; font-weight: 600; }
.post-hero .meta span { display: inline-flex; gap: 7px; align-items: center; }
.post-cover { height: 320px; border-radius: var(--r-lg); margin-bottom: 44px; }
.post-body { max-width: 780px; margin: 0 auto; }
.post-body p { font-size: 1.08rem; color: var(--ink-3); line-height: 1.85; margin-bottom: 24px; }
.post-body p:first-of-type { font-size: 1.2rem; color: var(--ink); font-weight: 500; }

/* ---------- CTA Bandı ---------- */
.cta-band { padding: 40px 0 90px; }
.cta-band__in {
    position: relative; overflow: hidden;
    background: linear-gradient(140deg, var(--ink) 0%, #10324A 55%, #0E4B5C 100%);
    border-radius: var(--r-lg); padding: 64px 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    box-shadow: var(--shadow-lg);
}
.cta-band__in::before { content: ''; position: absolute; inset: 0; background:
    radial-gradient(420px 260px at 92% 8%, rgba(0,194,168,.3), transparent 60%),
    radial-gradient(360px 220px at 6% 95%, rgba(255,107,44,.22), transparent 60%); }
.cta-band__text, .cta-band__actions { position: relative; }
.cta-band h2 { color: #fff; margin: 16px 0 14px; }
.cta-band h2 strong { color: #2CE5C8; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 520px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 13px; flex: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer__brand p { margin: 18px 0 22px; font-size: .92rem; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-bottom: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: .25s; }
.footer__social a:hover { background: var(--grad); transform: translateY(-3px); }
.footer__social .ic { width: 17px; height: 17px; }
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badges span { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 600; background: rgba(255,255,255,.07); padding: 6px 11px; border-radius: 8px; color: rgba(255,255,255,.8); }
.footer__badges .ic { width: 13px; height: 13px; color: var(--teal); }
.footer__col h4 { color: #fff; margin-bottom: 18px; font-size: .95rem; letter-spacing: .03em; }
.footer__col a, .footer__col > span { display: flex; align-items: flex-start; gap: 9px; padding: 6px 0; font-size: .9rem; color: rgba(255,255,255,.68); transition: color .2s, transform .2s; }
.footer__col a:hover { color: #2CE5C8; transform: translateX(3px); }
.footer__col .ic { width: 15px; height: 15px; margin-top: 4px; color: var(--teal); flex: none; }
.footer__demo { margin-top: 14px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .83rem; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a:hover { color: #2CE5C8; }

/* ---------- İç Sayfa Hero ---------- */
.page-hero { position: relative; padding: 70px 0 60px; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background:
    radial-gradient(560px 320px at 88% 0%, rgba(37,99,235,.1), transparent 60%),
    radial-gradient(620px 360px at 4% 100%, rgba(0,194,168,.12), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { margin: 18px auto 16px; max-width: 780px; }
.page-hero h1 strong { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 640px; margin: 0 auto; }
.page-hero__actions { display: flex; gap: 13px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; font-size: .82rem; color: var(--muted); margin-top: 26px; font-weight: 600; }
.breadcrumb a:hover { color: var(--teal-d); }
.breadcrumb .ic { width: 13px; height: 13px; transform: rotate(-90deg); }

/* ---------- Özellikler Dizini ---------- */
.feat-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.feat-side { position: sticky; top: 110px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px; max-height: calc(100vh - 140px); overflow-y: auto; }
.feat-side__search { position: relative; margin-bottom: 12px; }
.feat-side__search input { width: 100%; padding: 11px 14px 11px 38px; border: 1.5px solid var(--line); border-radius: 11px; font-size: .88rem; background: var(--bg); outline: none; transition: border-color .2s; }
.feat-side__search input:focus { border-color: var(--teal); background: #fff; }
.feat-side__search .ic { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--muted); }
.feat-side a { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 10px; font-size: .87rem; font-weight: 600; color: var(--ink-3); transition: .2s; }
.feat-side a .ic { width: 16px; height: 16px; color: var(--teal-d); flex: none; }
.feat-side a:hover, .feat-side a.is-active { background: rgba(0,194,168,.09); color: var(--teal-d); }
.feat-side a small { margin-left: auto; color: var(--muted); font-weight: 500; font-size: .72rem; }

.feat-cat { margin-bottom: 56px; scroll-margin-top: 110px; }
.feat-cat__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.feat-cat__head .cat-ic { width: 52px; height: 52px; flex: none; border-radius: 15px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px -8px rgba(0,168,150,.5); }
.feat-cat__head .cat-ic .ic { width: 25px; height: 25px; }
.feat-cat__head p { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.feat-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feat-item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0,194,168,.4); }
.feat-item .tick { width: 30px; height: 30px; flex: none; border-radius: 9px; background: rgba(0,194,168,.12); color: var(--teal-d); display: flex; align-items: center; justify-content: center; }
.feat-item .tick .ic { width: 15px; height: 15px; stroke-width: 2.4; }
.feat-item b { display: block; font-size: .95rem; font-family: var(--font-head); margin-bottom: 4px; }
.feat-item p { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.feat-item.is-hidden, .feat-cat.is-hidden { display: none; }
.feat-empty { text-align: center; padding: 60px 20px; color: var(--muted); display: none; }
.feat-empty.is-visible { display: block; }

/* ---------- Formlar ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .87rem; font-weight: 600; color: var(--ink-2); }
.form-field label i { color: var(--orange); font-style: normal; }
.form-field input, .form-field select, .form-field textarea {
    padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
    background: var(--bg); outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
    font-size: .95rem; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(0,194,168,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field .hint { font-size: .78rem; color: var(--muted); }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #E5484D; }
.form-field .error-msg { display: none; font-size: .78rem; color: #E5484D; font-weight: 600; }
.form-field.has-error .error-msg { display: block; }
.form-note { display: flex; gap: 9px; align-items: flex-start; font-size: .8rem; color: var(--muted); margin-top: 16px; }
.form-note .ic { width: 15px; height: 15px; color: var(--teal-d); flex: none; margin-top: 2px; }

.alert { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 13px; margin-bottom: 22px; font-size: .93rem; font-weight: 500; }
.alert .ic { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.alert--success { background: rgba(0,194,168,.1); color: #06705F; border: 1px solid rgba(0,194,168,.35); }
.alert--error { background: rgba(229,72,77,.08); color: #C0272D; border: 1px solid rgba(229,72,77,.3); }

/* ---------- Demo & İletişim Sayfaları ---------- */
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: transform .25s, box-shadow .25s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card .cc-ic { width: 48px; height: 48px; flex: none; border-radius: 13px; background: var(--grad-soft); color: var(--teal-d); display: flex; align-items: center; justify-content: center; }
.contact-card .cc-ic .ic { width: 22px; height: 22px; }
.contact-card b { display: block; font-family: var(--font-head); margin-bottom: 3px; }
.contact-card p, .contact-card a.link { font-size: .9rem; color: var(--muted); }
.contact-card a.link { color: var(--teal-d); font-weight: 600; }
.demo-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
.demo-perks .perk { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; text-align: center; }
.demo-perks .perk .ic { width: 26px; height: 26px; color: var(--teal-d); margin: 0 auto 10px; }
.demo-perks .perk b { display: block; font-size: .88rem; font-family: var(--font-head); }
.demo-perks .perk small { color: var(--muted); font-size: .76rem; }

/* ---------- Teşekkür Sayfası ---------- */
.thanks { text-align: center; padding: 90px 0; }
.thanks .ok { width: 96px; height: 96px; margin: 0 auto 28px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 40px -14px rgba(0,194,168,.55); animation: pop .5s cubic-bezier(.32,1.4,.5,1); }
.thanks .ok .ic { width: 44px; height: 44px; stroke-width: 2.4; }
@keyframes pop { from { transform: scale(.4); opacity: 0 } }
.thanks h1 { margin-bottom: 14px; }
.thanks p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ---------- Hakkımızda ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--teal), var(--blue)); border-radius: 2px; }
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item::before { content: ''; position: absolute; left: -31px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3.5px solid var(--teal); }
.timeline__item b.year { display: inline-block; font-family: var(--font-head); font-size: .82rem; font-weight: 800; color: var(--teal-d); background: rgba(0,194,168,.1); padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.timeline__item h3 { margin-bottom: 6px; }
.timeline__item p { color: var(--muted); font-size: .93rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Admin ---------- */
.admin-body { background: var(--bg); min-height: 100vh; }
.admin-head { background: var(--ink); color: #fff; padding: 16px 0; }
.admin-head__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-head nav { display: flex; gap: 6px; }
.admin-head nav a { padding: 8px 14px; border-radius: 9px; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.75); }
.admin-head nav a:hover, .admin-head nav a.is-active { background: rgba(255,255,255,.1); color: #fff; }
.admin-wrap { padding: 36px 0 70px; }
.admin-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; align-items: center; gap: 16px; }
.admin-card .ac-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-soft); color: var(--teal-d); display: flex; align-items: center; justify-content: center; }
.admin-card .ac-ic .ic { width: 24px; height: 24px; }
.admin-card b { font-family: var(--font-head); font-size: 1.6rem; display: block; line-height: 1.1; }
.admin-card small { color: var(--muted); font-size: .82rem; }
.admin-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .88rem; vertical-align: top; }
.admin-table th { background: var(--bg-soft); font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-2); }
.admin-table tr.is-unread td { background: rgba(0,194,168,.05); font-weight: 500; }
.admin-table .badge-new { display: inline-block; background: var(--orange); color: #fff; font-size: .66rem; font-weight: 800; padding: 2px 8px; border-radius: 99px; margin-left: 6px; vertical-align: middle; }
.admin-actions { display: flex; gap: 8px; }
.admin-actions a, .admin-actions button { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 600; padding: 6px 11px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); transition: .2s; }
.admin-actions a:hover, .admin-actions button:hover { border-color: var(--teal); color: var(--teal-d); }
.admin-actions .danger:hover { border-color: #E5484D; color: #E5484D; }
.login-card { max-width: 420px; margin: 80px auto; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); padding: 40px; box-shadow: var(--shadow-lg); }
.login-card .logo { justify-content: center; margin-bottom: 24px; }
.login-card h1 { font-size: 1.4rem; text-align: center; margin-bottom: 6px; }
.login-card > p { text-align: center; color: var(--muted); font-size: .88rem; margin-bottom: 26px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state .ic { width: 40px; height: 40px; margin: 0 auto 14px; color: #C4D2DF; }

/* ---------- Yardımcılar ---------- */
.back-top { position: fixed; right: 24px; bottom: 24px; z-index: 80; width: 46px; height: 46px; border-radius: 13px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s; }
.back-top .ic { transform: rotate(180deg); }
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--teal-d); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.32,.72,0,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s } .reveal-d2 { transition-delay: .16s } .reveal-d3 { transition-delay: .24s }

.text-grad { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.mb-0 { margin-bottom: 0 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .intg-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
    .hero__grid { grid-template-columns: 1fr; gap: 64px; }
    .hero__chip--order { right: 6px; } .hero__chip--rev { left: 6px; }
    .ai-band__in { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 44px; }
    .story-card { grid-template-columns: 1fr; }
    .story-metrics { grid-template-columns: repeat(3, 1fr); }
    .feat-layout { grid-template-columns: 1fr; }
    .feat-side { position: static; max-height: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .section { padding: 64px 0; }
    .topbar__right a:not(.topbar__cta) { display: none; }
    .topbar p { font-size: .78rem; }
    .header__actions .btn span { display: none; }
    .header__actions .btn { padding: 10px 12px; }
    .feat-grid, .intg-grid, .testi-grid, .blog-grid, .values-grid, .demo-perks { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-band__in { flex-direction: column; text-align: center; padding: 44px 28px; }
    .cta-band p { margin-inline: auto; }
    .cta-band__actions { width: 100%; }
    .ai-band { padding: 40px 26px; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .story-metrics { grid-template-columns: 1fr; }
    .stats-band { grid-template-columns: 1fr 1fr; padding: 34px 22px; gap: 22px; }
    .feat-items { grid-template-columns: 1fr; }
    .split__float { position: static; margin-top: 18px; }
    .hero { padding: 56px 0 72px; }
    .hero__proof { gap: 20px; }
    .page-hero { padding: 50px 0 44px; }
    .admin-cards { grid-template-columns: 1fr; }
    .post-cover { height: 200px; }
    .cmp-table th:first-child, .cmp-table td:first-child { min-width: 190px; }
}

/* ==========================================================================
   Müşteri Paneli
   ========================================================================== */
.login-card--wide { max-width: 640px; margin-top: 60px; margin-bottom: 40px; }
.login-card--wide h1 { font-size: 1.5rem; }

.panel-layout { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; }

.panel-side {
    background: var(--ink); color: rgba(255,255,255,.8);
    display: flex; flex-direction: column;
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.panel-side__logo { padding: 22px 22px 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.panel-nav { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 3px; }
.panel-nav__label { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: rgba(255,255,255,.4); padding: 14px 12px 6px; }
.panel-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 12px; border-radius: 11px;
    font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.75);
    transition: background .2s, color .2s;
}
.panel-nav a .ic { width: 19px; height: 19px; flex: none; }
.panel-nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.panel-nav a.is-active { background: var(--grad); color: #fff; box-shadow: 0 8px 18px -8px rgba(0,194,168,.6); }
.panel-nav__badge { margin-left: auto; background: var(--orange); color: #fff; font-size: .68rem; font-weight: 800; min-width: 20px; height: 20px; border-radius: 99px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; }
.panel-side__foot { padding: 16px 14px; border-top: 1px solid rgba(255,255,255,.09); }
.panel-side__site { display: flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.65); padding: 10px 12px; border-radius: 11px; }
.panel-side__site:hover { color: #2CE5C8; background: rgba(255,255,255,.06); }
.panel-side__site .ic { width: 17px; height: 17px; }

.panel-main { min-width: 0; }
.panel-top {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 20px 34px; position: sticky; top: 0; z-index: 40;
}
.panel-top h1 { font-size: 1.4rem; }
.panel-top p { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.panel-user { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 8px 16px 8px 8px; }
.panel-user__avatar { width: 42px; height: 42px; border-radius: 11px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.panel-user__info b { display: block; font-size: .92rem; line-height: 1.2; }
.panel-user__info small { color: var(--muted); font-size: .76rem; }
.panel-content { padding: 30px 34px 60px; }

.panel-cols { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.panel-cols--support { grid-template-columns: .9fr 1.1fr; }

.panel-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.panel-box__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.panel-box__head h3 { font-size: 1.1rem; }
.panel-box__more { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--teal-d); }
.panel-box__more .ic { width: 14px; height: 14px; }

.panel-package {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    background: linear-gradient(140deg, var(--ink) 0%, #10324A 60%, #0E4B5C 100%);
    border-radius: var(--r-lg); padding: 30px 34px; color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.panel-package::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 220px at 92% 0%, rgba(0,194,168,.3), transparent 60%); }
.panel-package__info, .panel-package__actions { position: relative; }
.panel-package__info h2 { color: #fff; margin: 12px 0 8px; font-size: 1.6rem; }
.panel-package__info p { color: rgba(255,255,255,.7); font-size: .92rem; }
.panel-package__actions { display: flex; align-items: center; gap: 12px; }
.panel-package--empty { background: linear-gradient(140deg, #0E4B5C 0%, #0A6B5E 60%, #00A892 100%); }

.panel-list { display: flex; flex-direction: column; }
.panel-list li { border-bottom: 1px solid var(--line); }
.panel-list li:last-child { border-bottom: none; }
.panel-list li a, .panel-list--static li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 6px; transition: background .2s; border-radius: 10px; }
.panel-list li a:hover { background: var(--bg); }
.panel-list__main b { display: block; font-size: .94rem; }
.panel-list__main small { color: var(--muted); font-size: .8rem; }

.quick-actions { display: flex; flex-direction: column; gap: 12px; }
.quick-action {
    display: flex; align-items: center; gap: 14px;
    border: 1px solid var(--line); border-radius: var(--r); padding: 15px 16px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.quick-action:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(0,194,168,.45); }
.quick-action__ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--grad-soft); color: var(--teal-d); display: flex; align-items: center; justify-content: center; }
.quick-action__ic .ic { width: 20px; height: 20px; }
.quick-action div { flex: 1; }
.quick-action b { display: block; font-size: .93rem; }
.quick-action small { color: var(--muted); font-size: .79rem; }
.quick-action > .ic { width: 17px; height: 17px; color: var(--muted); }

/* Durum rozetleri */
.status-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.st-open      { background: rgba(255,107,44,.13); color: var(--orange-d); }
.st-answered  { background: rgba(0,194,168,.13); color: var(--teal-d); }
.st-closed    { background: rgba(91,112,134,.13); color: var(--muted); }
.st-pending   { background: rgba(247,183,51,.16); color: #A97A08; }
.st-active    { background: rgba(0,194,168,.13); color: var(--teal-d); }
.st-cancelled { background: rgba(229,72,77,.1); color: #C0272D; }

/* Destek talebi mesajları */
.ticket-thread { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.ticket-msg { max-width: 82%; border-radius: var(--r); padding: 15px 18px; }
.ticket-msg--customer { align-self: flex-end; background: var(--grad-soft); border: 1px solid rgba(0,194,168,.25); border-bottom-right-radius: 4px; }
.ticket-msg--admin { align-self: flex-start; background: var(--bg); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.ticket-msg__meta { display: flex; align-items: center; gap: 10px; justify-content: space-between; margin-bottom: 7px; }
.ticket-msg__meta b { font-size: .86rem; }
.ticket-msg__meta small { color: var(--muted); font-size: .74rem; }
.ticket-msg__tag { display: inline-block; background: var(--grad); color: #fff; font-size: .64rem; font-weight: 800; padding: 2px 8px; border-radius: 99px; margin-left: 6px; vertical-align: 1px; }
.ticket-msg__body { font-size: .92rem; line-height: 1.65; color: var(--ink-2); }
.ticket-reply { border-top: 1px solid var(--line); padding-top: 20px; }

/* Panel responsive */
@media (max-width: 980px) {
    .panel-layout { grid-template-columns: 1fr; }
    .panel-side { position: static; height: auto; }
    .panel-side__logo { padding: 16px 18px; }
    .panel-nav { flex-direction: row; overflow-x: auto; padding: 10px 14px; gap: 6px; }
    .panel-nav__label, .panel-side__foot { display: none; }
    .panel-nav a { white-space: nowrap; padding: 9px 13px; }
    .panel-nav__badge { margin-left: 4px; }
    .panel-top { position: static; padding: 16px 20px; }
    .panel-content { padding: 22px 18px 50px; }
    .panel-cols, .panel-cols--support { grid-template-columns: 1fr; }
    .ticket-msg { max-width: 94%; }
}
@media (max-width: 640px) {
    .panel-user__info { display: none; }
    .panel-user { padding: 6px; }
    .panel-package { padding: 24px 22px; }
    .panel-package__actions { width: 100%; }
}

/* ==========================================================================
   Admin CMS (İçerik Yönetimi)
   ========================================================================== */
.admin-subnav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.admin-subnav__in { display: flex; align-items: center; gap: 4px; overflow-x: auto; padding: 10px 0; }
.admin-subnav__label { display: inline-flex; align-items: center; gap: 7px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); padding: 0 12px 0 2px; white-space: nowrap; }
.admin-subnav__label .ic { width: 15px; height: 15px; color: var(--teal-d); }
.admin-subnav a { padding: 8px 14px; border-radius: 9px; font-size: .86rem; font-weight: 600; color: var(--ink-3); white-space: nowrap; transition: .2s; }
.admin-subnav a:hover { background: var(--bg); color: var(--teal-d); }
.admin-subnav a.is-active { background: rgba(0,194,168,.1); color: var(--teal-d); }

textarea.mono, input.mono {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    font-size: .84rem; line-height: 1.7;
}
.cms-fieldset {
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 18px; margin-bottom: 18px; background: #FBFDFF;
}
.cms-fieldset:last-of-type { margin-bottom: 20px; }
.cms-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.cms-chips .intg-tab small { color: inherit; opacity: .6; }
.form-field code { background: var(--bg-soft); padding: 2px 7px; border-radius: 6px; font-size: .8em; color: var(--blue-d); }
.form-field label i { color: var(--orange); font-style: normal; }

@media (max-width: 720px) {
    .admin-subnav__label { display: none; }
}

/* ==========================================================================
   Veritabanlı Müşteri Paneli Ek Bileşenleri
   ========================================================================== */
.panel-wrap { min-height: calc(100vh - 137px); }
.panel-user-nav { display: flex; align-items: center; gap: 12px; }
.panel-user-nav > span { color: rgba(255,255,255,.78); font-size: .86rem; font-weight: 600; }
.panel-user-nav form { margin: 0; }
.panel-footer { background: #fff; border-top: 1px solid var(--line); padding: 18px 0; color: var(--muted); font-size: .84rem; }
.panel-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.panel-footer a { color: var(--teal-d); font-weight: 700; }

.panel-welcome { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: 28px; }
.panel-welcome h1 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin: 13px 0 8px; }
.panel-welcome p { color: var(--muted); max-width: 620px; }
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.panel-grid--profile { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }

.ticket-list { display: flex; flex-direction: column; }
.ticket-list__item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 5px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.ticket-list__item:last-child { border-bottom: none; }
.ticket-list__item:hover, .ticket-list__item.is-active { background: var(--bg); padding-inline: 12px; margin-inline: -12px; border-radius: 12px; }
.ticket-list__item strong { display: block; font-size: .9rem; line-height: 1.45; }
.ticket-list__item small { display: block; color: var(--muted); font-size: .77rem; margin-top: 3px; }

.panel-package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.panel-package-card { position: relative; cursor: pointer; }
.panel-package-card input { position: absolute; opacity: 0; pointer-events: none; }
.panel-package-card__body { display: flex; flex-direction: column; gap: 8px; min-height: 166px; padding: 20px; border: 1.5px solid var(--line); border-radius: var(--r); background: #fff; transition: border-color .2s, box-shadow .2s, transform .2s; }
.panel-package-card:hover .panel-package-card__body { border-color: rgba(0,194,168,.55); transform: translateY(-2px); box-shadow: var(--shadow); }
.panel-package-card input:checked + .panel-package-card__body { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,194,168,.14); background: linear-gradient(150deg, #fff, #F2FFFC); }
.panel-package-card strong { font-family: var(--font-head); font-size: 1.08rem; }
.panel-package-card em { font-style: normal; color: var(--teal-d); font-weight: 800; }
.panel-package-card > .panel-package-card__body > span:last-child { margin-top: auto; color: var(--muted); font-size: .8rem; }
.panel-package-card .badge-new { align-self: flex-start; }
.panel-order-note td { padding-top: 0 !important; color: var(--muted); font-size: .85rem; border-top: none !important; }

.support-layout { display: grid; grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr); gap: 24px; align-items: start; }
.support-list { position: sticky; top: 18px; }
.support-detail { min-height: 460px; }
.ticket-reply textarea, .form-field textarea { width: 100%; min-height: 130px; resize: vertical; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; outline: none; background: #fff; transition: border-color .2s, box-shadow .2s; }
.ticket-reply textarea:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,194,168,.1); }
.hint { color: var(--muted); font-size: .76rem; }

@media (max-width: 980px) {
    .panel-grid, .panel-grid--profile, .support-layout { grid-template-columns: 1fr; }
    .support-list { position: static; }
    .panel-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .admin-head__in { align-items: flex-start; flex-wrap: wrap; }
    .admin-head nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 3px; }
    .admin-head nav a { white-space: nowrap; }
    .panel-user-nav > span { display: none; }
    .panel-welcome { align-items: flex-start; flex-direction: column; }
    .panel-package-grid { grid-template-columns: 1fr; }
    .panel-footer .container { flex-direction: column; text-align: center; }
    .ticket-list__item { align-items: flex-start; }
}
