/* ================================================================
   ÇEB PRO WIDGETS — BASE CSS v3.0
   Design: Dark Industrial · Multi-Brand · Animated
   Brands: DFN #f97316 · Asel #00b4d8 · ALN #22c55e
   Bg:     #03090f → #05111f → #071828
   Fonts:  Barlow Condensed (900 display) · Barlow (body)
   ================================================================ */

/* ── Root tokens ── */
:root {
  --ceb:        #00b4d8;
  --ceb2:       #0096c7;
  --ceb3:       #38c5e5;
  --ceb-bg:     #03090f;
  --ceb-bg2:    #05111f;
  --ceb-bg3:    #071828;
  --ceb-surf:   #0a1e30;
  --ceb-border: rgba(0,180,216,.20);
  --ceb-bdim:   rgba(0,180,216,.08);
  --ceb-head:   #ffffff;
  --ceb-body:   #94a3b8;
  --ceb-lbl:    #38bdf8;
  --ceb-ff-h:   'Barlow Condensed', sans-serif;
  --ceb-ff-b:   'Barlow', sans-serif;
  --ceb-fz-h:   52px;
  --ceb-fz-b:   17px;
  --ceb-fw-h:   900;
  --ceb-fw-b:   400;
  --ceb-ls-h:   -1px;
  --ceb-r:      10px;
  --ceb-bw:     1px;
  --dfn:  #f97316;
  --asel: #00b4d8;
  --aln:  #22c55e;
}

/* ── Reset ── */
.ceb-w *, .ceb-w *::before, .ceb-w *::after { box-sizing: border-box; }
.ceb-w { color: var(--ceb-body); }
.ceb-w a { text-decoration: none; }
.ceb-w img { max-width: 100%; display: block; }
.ceb-w ::selection { background: var(--ceb); color: #fff; }

/* ── Layout ── */
.ceb-section    { padding: 110px 0; position: relative; overflow: hidden; }
.ceb-section-sm { padding: 72px 0;  position: relative; overflow: hidden; }
.ceb-wrap       { max-width: 1280px; margin: 0 auto; padding: 0 44px; }

/* Blueprint grid overlay */
.ceb-w .ceb-grid-bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--ceb-bdim) 1px, transparent 1px),
    linear-gradient(90deg, var(--ceb-bdim) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── Typography ── */
.ceb-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ceb-ff-b); font-size: 10px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--ceb-lbl); padding: 5px 14px;
  border: 1px solid var(--ceb-border); border-radius: 3px;
  background: var(--ceb-bdim); margin-bottom: 18px;
}
.ceb-label::before { content: ''; width: 24px; height: 2px; background: var(--ceb); display: block; }

.ceb-title {
  font-family: var(--ceb-ff-h);
  font-size: clamp(38px, var(--ceb-fz-h), 90px);
  font-weight: var(--ceb-fw-h);
  letter-spacing: var(--ceb-ls-h);
  line-height: .96; text-transform: uppercase;
  color: var(--ceb-head); margin: 0 0 16px;
}
.ceb-title .hl      { color: var(--ceb); }
.ceb-title em       { font-style: normal; color: var(--ceb); }
.ceb-title .outline {
  -webkit-text-stroke: 2px var(--ceb);
  color: transparent;
}

.ceb-desc {
  font-family: var(--ceb-ff-b); font-size: var(--ceb-fz-b);
  font-weight: var(--ceb-fw-b); line-height: 1.75;
  color: var(--ceb-body); margin: 0;
}
.ceb-divider { width: 52px; height: 3px; background: var(--ceb); border-radius: 2px; margin: 20px 0; }

/* ── Buttons ── */
.ceb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--ceb-r);
  border: var(--ceb-bw) solid transparent;
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
  position: relative; overflow: hidden;
}
.ceb-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.0); transition: background .22s;
}
.ceb-btn:hover::after { background: rgba(255,255,255,.08); }

.ceb-btn-primary { background: var(--ceb); color: #fff; border-color: var(--ceb); }
.ceb-btn-primary:hover { background: var(--ceb2); border-color: var(--ceb2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.ceb-btn-ghost   { background: transparent; color: var(--ceb); border-color: var(--ceb-border); }
.ceb-btn-ghost:hover { background: var(--ceb-bdim); border-color: var(--ceb); color: var(--ceb); transform: translateY(-2px); }
.ceb-btn-white   { background: #fff; color: #05111f; border-color: #fff; }
.ceb-btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.ceb-btn-outline { background: transparent; color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }
.ceb-btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.05); }

/* ── Card base ── */
.ceb-card {
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: var(--ceb-r); transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.ceb-card:hover { border-color: var(--ceb); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.ceb-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--ceb), var(--ceb3));
  opacity: 0; transition: opacity .3s;
}
.ceb-card:hover::before { opacity: 1; }

/* ── Checklist ── */
.ceb-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 0; padding: 0; }
.ceb-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--ceb-ff-b); font-size: 15px;
  color: var(--ceb-head); font-weight: 500; line-height: 1.5;
}
.ceb-list li::before {
  content: '✓'; width: 22px; height: 22px; min-width: 22px;
  background: var(--ceb); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 900;
  margin-top: 1px;
}

/* ═════════════════════════════════
   HERO
════════════════════════════════= */
.ceb-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  background: linear-gradient(145deg, #01050c 0%, var(--ceb-bg) 40%, var(--ceb-bg2) 100%);
  position: relative; overflow: hidden;
}
.ceb-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--ceb-bdim) 1px, transparent 1px),
    linear-gradient(90deg, var(--ceb-bdim) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ceb-hero-glow {
  position: absolute; pointer-events: none; border-radius: 50%; filter: blur(100px);
}
.ceb-hero-glow.gr { top: -15%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,180,216,.12), transparent 65%); }
.ceb-hero-glow.gb { bottom: -10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,115,22,.08), transparent 65%); }

.ceb-hero-deco {
  position: absolute; right: -40px; bottom: -40px; pointer-events: none; user-select: none;
  font-family: var(--ceb-ff-h); font-size: clamp(120px,14vw,220px); font-weight: 900;
  text-transform: uppercase; line-height: 1; opacity: .04; color: var(--ceb-head);
  letter-spacing: -4px;
}
.ceb-hero-inner {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 100px 44px 80px; position: relative; z-index: 2; width: 100%;
}
.ceb-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ceb-ff-b); font-size: 10px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--ceb3); margin-bottom: 24px;
}
.ceb-hero-badge::before { content: ''; display: block; width: 40px; height: 2px; background: var(--ceb); }

.ceb-hero-h1 {
  font-family: var(--ceb-ff-h); font-weight: 900; text-transform: uppercase;
  font-size: clamp(56px, 7vw, 100px); line-height: .90; letter-spacing: -3px;
  color: var(--ceb-head); margin: 0 0 28px;
}
.ceb-hero-h1 .dot-dfn  { color: var(--dfn); }
.ceb-hero-h1 .dot-asel { color: var(--asel); }
.ceb-hero-h1 .dot-aln  { color: var(--aln); }
.ceb-hero-h1 em        { font-style: normal; color: var(--ceb); }

.ceb-hero-desc { font-size: 17px; line-height: 1.75; color: var(--ceb-body); margin: 0 0 36px; font-family: var(--ceb-ff-b); max-width: 520px; }

.ceb-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.ceb-hero-chips { display: flex; flex-direction: column; gap: 10px; }
.ceb-chip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 10px 16px;
  transition: border-color .2s, background .2s;
}
.ceb-chip:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.ceb-chip .ci {
  width: 40px; height: 40px; border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--ceb-ff-h); font-size: 13px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.ceb-chip-dfn  .ci { background: var(--dfn); }
.ceb-chip-asel .ci { background: var(--asel); }
.ceb-chip-aln  .ci { background: var(--aln); }
.ceb-chip span { font-family: var(--ceb-ff-b); font-size: 13px; font-weight: 600; color: var(--ceb-head); line-height: 1.3; }

/* Stat grid (hero right) */
.ceb-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.ceb-stat-card {
  background: rgba(255,255,255,.04); backdrop-filter: blur(12px);
  border: 1px solid var(--ceb-border); border-radius: var(--ceb-r);
  padding: 24px; transition: border-color .3s, background .3s;
  display: flex; flex-direction: column; gap: 4px;
}
.ceb-stat-card:hover { border-color: var(--ceb); background: rgba(255,255,255,.07); }
.ceb-stat-card.wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 24px; }
.ceb-stat-num {
  font-family: var(--ceb-ff-h); font-size: 40px; font-weight: 900;
  color: var(--ceb); line-height: 1; letter-spacing: -1px;
}
.ceb-stat-lbl { font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 600; color: var(--ceb-head); text-transform: uppercase; letter-spacing: .1em; }
.ceb-stat-side { border-left: 1px solid var(--ceb-border); padding-left: 24px; }
.ceb-stat-side p { font-size: 13px; color: var(--ceb-body); line-height: 1.6; margin: 0; font-family: var(--ceb-ff-b); }
.ceb-stat-icon { font-size: 28px; line-height: 1; margin-bottom: 4px; }

/* Marquee */
.ceb-marquee {
  background: linear-gradient(90deg, var(--ceb) 0%, var(--ceb2) 50%, var(--dfn) 100%);
  padding: 14px 0; overflow: hidden; position: relative; z-index: 3;
}
.ceb-mq-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: cebMQ 28s linear infinite;
}
.ceb-mq-item {
  display: inline-flex; align-items: center; gap: 32px; padding: 0 32px;
  font-family: var(--ceb-ff-h); font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: .15em; text-transform: uppercase;
}
.ceb-mq-item::after { content: '●'; opacity: .5; font-size: 8px; }
@keyframes cebMQ { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ═════════════════════════════════
   HAKKIMIZDA
════════════════════════════════= */
.ceb-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ceb-visual { position: relative; }
.ceb-pulse {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 600; color: var(--ceb-head);
  background: rgba(255,255,255,.06); border: 1px solid var(--ceb-border);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 16px;
}
.ceb-pulse .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: cebPulse 1.8s ease-out infinite;
}
@keyframes cebPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.ceb-frame {
  border-radius: 12px; overflow: hidden; position: relative;
  border: var(--ceb-bw) solid var(--ceb-border);
}
.ceb-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ceb-frame.big  { height: 360px; }
.ceb-frame.small {
  width: 200px; height: 160px; position: absolute; bottom: -24px; right: -24px;
  border: 3px solid var(--ceb-bg2);
}
.ceb-frame-ph {
  width: 100%; height: 100%; background: var(--ceb-surf);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  font-size: 36px; color: var(--ceb-body);
}
.ceb-frame-ph span:last-child { font-size: 12px; font-family: var(--ceb-ff-b); }
.ceb-frame-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 24px 14px 10px;
  font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 600; color: #fff;
}
.ceb-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--ceb); border-style: solid;
}
.ceb-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.ceb-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.ceb-float-badge {
  position: absolute; bottom: 48px; left: -28px;
  background: var(--ceb); border-radius: 10px; padding: 14px 18px; text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.ceb-float-badge .fn {
  font-family: var(--ceb-ff-h); font-size: 36px; font-weight: 900; color: #fff; line-height: 1;
}
.ceb-float-badge .ft {
  font-family: var(--ceb-ff-b); font-size: 11px; font-weight: 600; color: rgba(255,255,255,.85); text-align: center;
}

.ceb-tabs-nav { display: flex; gap: 4px; margin: 24px 0 0; border-bottom: 1px solid var(--ceb-border); }
.ceb-tab-btn {
  font-family: var(--ceb-ff-b); font-size: 13px; font-weight: 600; color: var(--ceb-body);
  background: none; border: none; border-bottom: 2px solid transparent; padding: 10px 16px;
  cursor: pointer; transition: color .2s, border-color .2s; margin-bottom: -1px;
}
.ceb-tab-btn.active, .ceb-tab-btn:hover { color: var(--ceb); border-bottom-color: var(--ceb); }
.ceb-tab-body { display: none; padding: 18px 0 0; font-family: var(--ceb-ff-b); font-size: 15px; line-height: 1.75; color: var(--ceb-body); }
.ceb-tab-body.active { display: block; }

/* ═════════════════════════════════
   MARKALAR
════════════════════════════════= */
.ceb-brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ceb-brand-card {
  border-radius: var(--ceb-r); overflow: hidden;
  border: var(--ceb-bw) solid var(--ceb-border); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ceb-brand-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.ceb-brand-card-dfn:hover  { border-color: var(--dfn); }
.ceb-brand-card-asel:hover { border-color: var(--asel); }
.ceb-brand-card-aln:hover  { border-color: var(--aln); }

.ceb-brand-header {
  padding: 32px 28px 24px; position: relative; overflow: hidden;
}
.ceb-brand-card-dfn  .ceb-brand-header { background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05)); }
.ceb-brand-card-asel .ceb-brand-header { background: linear-gradient(135deg, rgba(0,180,216,.15), rgba(0,180,216,.05)); }
.ceb-brand-card-aln  .ceb-brand-header { background: linear-gradient(135deg, rgba(34,197,94,.15),  rgba(34,197,94,.05)); }

.ceb-brand-logo {
  font-family: var(--ceb-ff-h); font-size: 28px; font-weight: 900; margin-bottom: 8px;
}
.ceb-brand-card-dfn  .ceb-brand-logo { color: var(--dfn); }
.ceb-brand-card-asel .ceb-brand-logo { color: var(--asel); }
.ceb-brand-card-aln  .ceb-brand-logo { color: var(--aln); }
.ceb-brand-tagline { font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 600; color: var(--ceb-body); text-transform: uppercase; letter-spacing: .1em; }

.ceb-brand-body { padding: 24px 28px 28px; background: var(--ceb-surf); }
.ceb-brand-title { font-family: var(--ceb-ff-h); font-size: 26px; font-weight: 900; color: var(--ceb-head); text-transform: uppercase; letter-spacing: -.5px; margin-bottom: 10px; }
.ceb-brand-desc  { font-family: var(--ceb-ff-b); font-size: 14px; color: var(--ceb-body); line-height: 1.7; margin: 0 0 16px; }
.ceb-brand-feats { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin: 0 0 24px; }
.ceb-brand-feats li {
  font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-head); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.ceb-brand-feats li::before { content: '→'; font-size: 12px; font-weight: 900; }
.ceb-brand-card-dfn  .ceb-brand-feats li::before { color: var(--dfn); }
.ceb-brand-card-asel .ceb-brand-feats li::before { color: var(--asel); }
.ceb-brand-card-aln  .ceb-brand-feats li::before { color: var(--aln); }
.ceb-brand-btn-dfn  { background: var(--dfn); color: #fff; border-color: var(--dfn); }
.ceb-brand-btn-asel { background: var(--asel); color: #fff; border-color: var(--asel); }
.ceb-brand-btn-aln  { background: var(--aln); color: #fff; border-color: var(--aln); }
.ceb-brand-btn-dfn:hover  { background: #ea6c0a; }
.ceb-brand-btn-asel:hover { background: #0096c7; }
.ceb-brand-btn-aln:hover  { background: #16a34a; }

/* ═════════════════════════════════
   HİZMETLER
════════════════════════════════= */
.ceb-svc-grid { display: grid; gap: 24px; }
.ceb-svc-card {
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: var(--ceb-r); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ceb-svc-card:hover { border-color: var(--ceb); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.ceb-svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ceb-bdim), transparent);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.ceb-svc-card:hover::after { opacity: 1; }
.ceb-svc-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--ceb-ff-h); font-size: 72px; font-weight: 900;
  color: var(--ceb-bdim); line-height: 1; pointer-events: none;
}
.ceb-svc-icon { font-size: 40px; line-height: 1; display: block; margin-bottom: 20px; }
.ceb-svc-title {
  font-family: var(--ceb-ff-h); font-size: 24px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.5px;
  color: var(--ceb-head); margin-bottom: 12px;
}
.ceb-svc-desc { font-family: var(--ceb-ff-b); font-size: 14px; color: var(--ceb-body); line-height: 1.7; margin: 0 0 20px; }
.ceb-svc-feats { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin: 0 0 24px; }
.ceb-svc-feats li {
  font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-head); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.ceb-svc-feats li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--ceb); border-radius: 50%;
}
.ceb-svc-link {
  font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ceb);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.ceb-svc-link:hover { gap: 10px; }

/* ═════════════════════════════════
   RAKAMLAR
════════════════════════════════= */
.ceb-counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--ceb-border); border-radius: var(--ceb-r); overflow: hidden; margin-bottom: 40px;
}
.ceb-cnt-block {
  background: var(--ceb-surf); padding: 44px 32px; text-align: center;
  transition: background .3s;
}
.ceb-cnt-block:hover { background: var(--ceb-bg3); }
.ceb-cnt-block.ceb-cnt-hl { background: var(--ceb); }
.ceb-cnt-block.ceb-cnt-hl .ceb-cnt-num,
.ceb-cnt-block.ceb-cnt-hl .ceb-cnt-lbl { color: #fff; }
.ceb-cnt-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.ceb-cnt-num {
  font-family: var(--ceb-ff-h); font-size: 56px; font-weight: 900;
  color: var(--ceb); letter-spacing: -2px; line-height: 1; display: block; margin-bottom: 8px;
}
.ceb-cnt-lbl {
  font-family: var(--ceb-ff-b); font-size: 13px; font-weight: 600;
  color: var(--ceb-head); text-transform: uppercase; letter-spacing: .08em;
}
.ceb-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.ceb-ic-box {
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: var(--ceb-r); padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .3s;
}
.ceb-ic-box:hover { border-color: var(--ceb); }
.ceb-ic-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.ceb-ic-title { font-family: var(--ceb-ff-h); font-size: 18px; font-weight: 700; color: var(--ceb-head); text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 6px; }
.ceb-ic-text  { font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-body); line-height: 1.65; margin: 0; }
.ceb-cert-band {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  border-top: var(--ceb-bw) solid var(--ceb-border); padding-top: 32px;
}
.ceb-cert-item {
  font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: var(--ceb-lbl);
  padding: 8px 24px;
}
.ceb-cert-sep { color: var(--ceb); opacity: .4; }

/* ═════════════════════════════════
   PROJELER
════════════════════════════════= */
.ceb-proj-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.ceb-flt-btn {
  font-family: var(--ceb-ff-b); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 8px 20px; border-radius: 100px;
  border: var(--ceb-bw) solid var(--ceb-border);
  color: var(--ceb-body); background: transparent; cursor: pointer;
  transition: all .2s;
}
.ceb-flt-btn.active, .ceb-flt-btn:hover {
  border-color: var(--flt, var(--ceb)); color: var(--flt, var(--ceb));
  background: rgba(0,0,0,.15);
}
.ceb-proj-grid { display: grid; gap: 24px; }
.ceb-proj-card {
  border-radius: var(--ceb-r); overflow: hidden;
  border: var(--ceb-bw) solid var(--ceb-border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  background: var(--ceb-surf);
}
.ceb-proj-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,.5); border-color: var(--ceb-proj-accent, var(--ceb)); }
.ceb-proj-card.hidden { display: none; }
.ceb-proj-thumb {
  height: 220px; background: var(--ceb-bg3); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; color: var(--ceb-body);
}
.ceb-proj-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s ease; }
.ceb-proj-card:hover .ceb-proj-thumb img { transform: scale(1.06); }
.ceb-proj-year {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  font-family: var(--ceb-ff-b); font-size: 11px; font-weight: 700; color: #fff;
  padding: 4px 10px; border-radius: 100px;
}
.ceb-proj-cat {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--ceb-ff-b); font-size: 10px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 4px 10px; border-radius: 100px;
}
.ceb-proj-body { padding: 20px 22px 22px; }
.ceb-proj-title { font-family: var(--ceb-ff-h); font-size: 20px; font-weight: 900; color: var(--ceb-head); text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 8px; }
.ceb-proj-desc  { font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-body); line-height: 1.65; margin: 0 0 14px; }
.ceb-proj-meta  { display: flex; gap: 12px; align-items: center; font-family: var(--ceb-ff-b); font-size: 12px; color: var(--ceb-body); flex-wrap: wrap; }
.ceb-proj-meta em { font-style: normal; font-weight: 700; color: var(--ceb-proj-accent, var(--ceb)); }

/* ═════════════════════════════════
   SÜREÇ (Timeline)
════════════════════════════════= */
.ceb-surec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.ceb-surec-grid::before {
  content: ''; position: absolute; top: 36px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--ceb), var(--ceb2)); z-index: 0;
}
.ceb-surec-item {
  padding: 0 16px; position: relative; z-index: 1; text-align: center;
}
.ceb-surec-step {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  border: 2px solid var(--ceb); background: var(--ceb-bg);
  display: grid; place-items: center;
  font-family: var(--ceb-ff-h); font-size: 26px; font-weight: 900; color: var(--ceb);
  position: relative; z-index: 2; transition: background .3s, color .3s, transform .3s;
}
.ceb-surec-item:hover .ceb-surec-step { background: var(--ceb); color: #fff; transform: scale(1.1); }
.ceb-surec-icon { font-size: 30px; }
.ceb-surec-title {
  font-family: var(--ceb-ff-h); font-size: 20px; font-weight: 900; color: var(--ceb-head);
  text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 10px;
}
.ceb-surec-desc { font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-body); line-height: 1.65; }
.ceb-surec-detail {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--ceb-border);
}
.ceb-surec-detail li {
  font-family: var(--ceb-ff-b); font-size: 12px; color: var(--ceb-body); line-height: 1.6;
  display: flex; align-items: center; gap: 6px; text-align: left; margin-bottom: 4px;
}
.ceb-surec-detail li::before { content: '•'; color: var(--ceb); font-weight: 900; }

/* ═════════════════════════════════
   NEDEN BİZ
════════════════════════════════= */
.ceb-why-intro {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; margin-bottom: 48px;
}
.ceb-wi-left {
  background: linear-gradient(135deg, var(--ceb-surf), var(--ceb-bg2));
  border: var(--ceb-bw) solid var(--ceb-border); border-radius: var(--ceb-r);
  padding: 44px; position: relative; overflow: hidden;
}
.ceb-wi-left::before {
  content: attr(data-deco);
  position: absolute; bottom: -20px; right: -10px;
  font-family: var(--ceb-ff-h); font-size: 100px; font-weight: 900;
  color: var(--ceb-bdim); pointer-events: none; line-height: 1; letter-spacing: -3px;
}
.ceb-wi-title {
  font-family: var(--ceb-ff-h); font-size: 30px; font-weight: 900; color: var(--ceb-head);
  text-transform: uppercase; letter-spacing: -1px; margin-bottom: 14px;
}
.ceb-wi-desc { font-family: var(--ceb-ff-b); font-size: 15px; color: var(--ceb-body); line-height: 1.75; margin: 0; }
.ceb-wi-right {
  display: flex; flex-direction: column; gap: 16px;
}
.ceb-wi-stat {
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: var(--ceb-r); padding: 20px 24px; display: flex; align-items: center; gap: 20px;
  transition: border-color .3s;
}
.ceb-wi-stat:hover { border-color: var(--ceb); }
.ceb-wi-num {
  font-family: var(--ceb-ff-h); font-size: 38px; font-weight: 900; color: var(--ceb); line-height: 1; flex-shrink: 0;
}
.ceb-wi-lbl {
  font-family: var(--ceb-ff-b); font-size: 14px; font-weight: 700; color: var(--ceb-head); line-height: 1.3;
}
.ceb-wi-lbl small { display: block; font-size: 12px; font-weight: 400; color: var(--ceb-body); margin-top: 3px; }
.ceb-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ceb-why-card {
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: var(--ceb-r); padding: 30px; transition: border-color .3s, transform .3s;
}
.ceb-why-card:hover { border-color: var(--ceb); transform: translateY(-4px); }
.ceb-why-icon {
  font-size: 32px; display: block; margin-bottom: 16px;
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--ceb-bdim); border: 1px solid var(--ceb-border);
  display: grid; place-items: center;
}
.ceb-why-title { font-family: var(--ceb-ff-h); font-size: 20px; font-weight: 900; color: var(--ceb-head); text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 10px; }
.ceb-why-desc  { font-family: var(--ceb-ff-b); font-size: 14px; color: var(--ceb-body); line-height: 1.7; margin: 0; }

/* ═════════════════════════════════
   MARKA CTA
════════════════════════════════= */
.ceb-mcta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ceb-mcta-card {
  border-radius: var(--ceb-r); overflow: hidden;
  border: var(--ceb-bw) solid var(--ceb-border);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.ceb-mcta-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.ceb-mcta-dfn:hover  { border-color: var(--dfn); }
.ceb-mcta-asel:hover { border-color: var(--asel); }
.ceb-mcta-aln:hover  { border-color: var(--aln); }
.ceb-mcta-top {
  padding: 36px 28px 28px; position: relative; overflow: hidden; flex: 1;
  background: var(--ceb-surf);
}
.ceb-mcta-top::before {
  content: attr(data-deco); position: absolute; bottom: -16px; right: -8px;
  font-family: var(--ceb-ff-h); font-size: 80px; font-weight: 900; color: var(--ceb-bdim);
  pointer-events: none; line-height: 1; letter-spacing: -2px;
}
.ceb-mcta-dfn  .ceb-mcta-top { border-top: 3px solid var(--dfn);  }
.ceb-mcta-asel .ceb-mcta-top { border-top: 3px solid var(--asel); }
.ceb-mcta-aln  .ceb-mcta-top { border-top: 3px solid var(--aln);  }
.ceb-mcta-logo {
  font-family: var(--ceb-ff-h); font-size: 24px; font-weight: 900; margin-bottom: 6px;
}
.ceb-mcta-dfn  .ceb-mcta-logo { color: var(--dfn); }
.ceb-mcta-asel .ceb-mcta-logo { color: var(--asel); }
.ceb-mcta-aln  .ceb-mcta-logo { color: var(--aln); }
.ceb-mcta-sub   { font-family: var(--ceb-ff-b); font-size: 11px; color: var(--ceb-body); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 14px; }
.ceb-mcta-title { font-family: var(--ceb-ff-h); font-size: 26px; font-weight: 900; color: var(--ceb-head); text-transform: uppercase; letter-spacing: -.5px; margin-bottom: 10px; }
.ceb-mcta-desc  { font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-body); line-height: 1.65; margin: 0; }
.ceb-mcta-feats { list-style: none; padding: 16px 28px; background: var(--ceb-bg3); display: flex; flex-direction: column; gap: 7px; margin: 0; }
.ceb-mcta-feats li {
  font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb-head); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.ceb-mcta-dfn  .ceb-mcta-feats li::before { content: '→'; color: var(--dfn);  font-weight: 900; }
.ceb-mcta-asel .ceb-mcta-feats li::before { content: '→'; color: var(--asel); font-weight: 900; }
.ceb-mcta-aln  .ceb-mcta-feats li::before { content: '→'; color: var(--aln);  font-weight: 900; }
.ceb-mcta-footer { padding: 20px 28px; background: var(--ceb-surf); }
.ceb-mcta-btn { width: 100%; justify-content: center; font-size: 12px; border-radius: var(--ceb-r); }
.ceb-mcta-dfn  .ceb-mcta-btn { background: var(--dfn);  color: #fff; border-color: var(--dfn);  }
.ceb-mcta-asel .ceb-mcta-btn { background: var(--asel); color: #fff; border-color: var(--asel); }
.ceb-mcta-aln  .ceb-mcta-btn { background: var(--aln);  color: #fff; border-color: var(--aln);  }

/* ═════════════════════════════════
   İLETİŞİM
════════════════════════════════= */
.ceb-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: flex-start; }
.ceb-ci-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ceb-ci-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: var(--ceb-r); padding: 16px 20px; transition: border-color .2s;
}
.ceb-ci-row:hover { border-color: var(--ceb); }
.ceb-ci-icon { font-size: 22px; flex-shrink: 0; width: 40px; text-align: center; }
.ceb-ci-label { font-family: var(--ceb-ff-b); font-size: 10px; font-weight: 700; color: var(--ceb-lbl); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 4px; }
.ceb-ci-value { font-family: var(--ceb-ff-b); font-size: 15px; font-weight: 600; color: var(--ceb-head); }
.ceb-ci-value a { color: var(--ceb-head); transition: color .2s; }
.ceb-ci-value a:hover { color: var(--ceb); }

.ceb-social-row { display: flex; gap: 10px; }
.ceb-social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  border: var(--ceb-bw) solid var(--ceb-border);
  background: var(--ceb-surf); color: var(--ceb-body);
  display: grid; place-items: center;
  font-family: var(--ceb-ff-h); font-size: 13px; font-weight: 900;
  transition: border-color .2s, color .2s, background .2s;
}
.ceb-social-btn:hover { border-color: var(--ceb); color: var(--ceb); background: var(--ceb-bdim); }

/* Form */
.ceb-form-wrap {
  background: var(--ceb-surf); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: 14px; padding: 40px;
}
.ceb-form-title { font-family: var(--ceb-ff-h); font-size: 28px; font-weight: 900; color: var(--ceb-head); text-transform: uppercase; letter-spacing: -.5px; margin-bottom: 6px; }
.ceb-form-sub   { font-family: var(--ceb-ff-b); font-size: 14px; color: var(--ceb-body); margin: 0 0 28px; line-height: 1.6; }
.ceb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ceb-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ceb-form-group label { font-family: var(--ceb-ff-b); font-size: 11px; font-weight: 700; color: var(--ceb-lbl); text-transform: uppercase; letter-spacing: .1em; }
.ceb-form-group input,
.ceb-form-group select,
.ceb-form-group textarea {
  background: var(--ceb-bg); border: var(--ceb-bw) solid var(--ceb-border);
  border-radius: 8px; padding: 12px 16px;
  font-family: var(--ceb-ff-b); font-size: 14px; color: var(--ceb-head);
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.ceb-form-group input:focus,
.ceb-form-group select:focus,
.ceb-form-group textarea:focus {
  border-color: var(--ceb); box-shadow: 0 0 0 3px var(--ceb-bdim);
}
.ceb-form-group select option { background: var(--ceb-bg3); color: var(--ceb-head); }
.ceb-form-group textarea { resize: vertical; min-height: 110px; }
.ceb-form-submit {
  width: 100%; padding: 15px 32px; margin-top: 8px;
  background: var(--ceb); color: #fff;
  border: none; border-radius: var(--ceb-r); cursor: pointer;
  font-family: var(--ceb-ff-h); font-size: 17px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.ceb-form-submit:hover { background: var(--ceb2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.ceb-form-ok { display: none; text-align: center; margin-top: 16px; padding: 14px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); border-radius: 8px; font-family: var(--ceb-ff-b); font-size: 14px; font-weight: 600; color: #4ade80; }
.ceb-form-ok.show { display: block; }

/* Global style indicator */
.ceb-global-style-indicator {
  padding: 14px 20px; background: rgba(0,180,216,.1); border: 1px solid var(--ceb-border);
  border-radius: var(--ceb-r); font-family: var(--ceb-ff-b); font-size: 13px; color: var(--ceb3);
}

/* ═════════════════════════════════
   RESPONSIVE
════════════════════════════════= */
@media (max-width: 1100px) {
  .ceb-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .ceb-stat-grid  { grid-template-columns: 1fr 1fr; }
  .ceb-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .ceb-frame.small { display: none; }
  .ceb-float-badge { left: 0; }
  .ceb-surec-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ceb-surec-grid::before { display: none; }
}
@media (max-width: 900px) {
  .ceb-wrap { padding: 0 24px; }
  .ceb-section    { padding: 80px 0; }
  .ceb-section-sm { padding: 52px 0; }
  .ceb-brand-grid { grid-template-columns: 1fr; }
  .ceb-svc-grid   { grid-template-columns: 1fr; }
  .ceb-proj-grid  { grid-template-columns: 1fr; }
  .ceb-counters   { grid-template-columns: repeat(2, 1fr); }
  .ceb-info-cards { grid-template-columns: 1fr; }
  .ceb-mcta-grid  { grid-template-columns: 1fr; }
  .ceb-why-grid   { grid-template-columns: 1fr; }
  .ceb-why-intro  { grid-template-columns: 1fr; }
  .ceb-contact-grid { grid-template-columns: 1fr; }
  .ceb-form-row   { grid-template-columns: 1fr; }
  .ceb-hero-chips { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .ceb-counters { grid-template-columns: 1fr 1fr; }
  .ceb-surec-grid { grid-template-columns: 1fr; }
  .ceb-hero-btns { flex-direction: column; }
  .ceb-hero-h1 { font-size: clamp(44px, 12vw, 68px); }
  .ceb-title   { font-size: clamp(32px, 8vw, 52px); }
}
